// ==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 // @downloadURL 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"; })();