Greasy Fork

Copy text from fanfiction.net

Allow copy from fanfiction.net

目前为 2017-08-18 提交的版本。查看 最新版本

// ==UserScript==
// @name         Copy text from fanfiction.net
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Allow copy from fanfiction.net
// @author       scuzz
// @match        https://www.fanfiction.net/s*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var observer = new MutationObserver(function(mutations) {
        mutations.forEach(function(mutationRecord) {
            if( document.getElementById('storytextp').style["user-select"] != "text") {
                document.getElementById('storytextp').style["user-select"] = "text";
            console.log('Fuck you ff net');
            }
        });
    });

    var target = document.getElementById('storytextp');
    observer.observe(target, { attributes : true, attributeFilter : ['style'] });
    document.getElementById('storytextp').style["user-select"] = "text";
})();