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.

Versão de: 04/03/2020. Veja: a última versão.

// ==UserScript==
// @name         EnableCopy_Lush Story
// @namespace    yoursatan
// @version      0.0.1
// @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-size","16px");
    $( ".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()
    $(".story").remove();
    $("#newCont").append(storyAll);
    });

})();