Sleazy Fork is available in English.

EnableCopy_Lush Story

Add a button for the site:www.lushStories.com, and click to remove the copy restriction.

Från och med 2020-03-04. Se den senaste versionen.

// ==UserScript==
// @name         EnableCopy_Lush Story
// @namespace    yoursatan
// @version      0.0.2
// @description  Add a button for the site:www.lushStories.com, and click to remove the copy restriction.
// @author       yorusatan
// @include      http*://www.lushstories.com/*
// @grant        none
// @require      https://code.jquery.com/jquery-2.1.4.min.js
// @license      MIT License
// ==/UserScript==
(function() {
    'use strict';

    $(".blockselect").css({"-moz-user-select": "-moz-text",
    "-khtml-user-select": "text",
    "-webkit-user-select": "text",
    "user-select": "text"});
    $("#printer").css({"-moz-user-select": "-moz-text",
    "-khtml-user-select": "text",
    "-webkit-user-select": "text",
    "user-select": "text"});
     $(".onoffswitch").css({"-moz-user-select": "-moz-text",
    "-khtml-user-select": "text",
    "-webkit-user-select": "text",
    "user-select": "text"});
    $(".storycontent").css({"font-family":"Times New Roman","font-size":"1.4em","line-height":"1.5em","font-weight":"normal"});
    $( ".story" ).wrap( "<div id='newCont'></div>" );
    $("#breadcrumb").append('<input id="btn-enable-copy" type="button" value="Enable Copy" style="color:red">');
    $("#btn-enable-copy").click(function(){
    var storyAll = $(".story").html()
    $("#sticky-col").remove()
    $(".story").remove();
    $("#newCont").append(storyAll);
    });

})();