NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Autorise la sélection sur Fanfiction.net // @namespace https://openuserjs.org/users/clemente // @match https://www.fanfiction.net/* // @grant none // @version 1.0 // @author clemente // @license MIT // @description Autorise la sélection de texte sur Fanfiction.net (elle est impossible par défaut depuis 2013) // @icon https://www.fanfiction.net/static/images/favicon_2010_iphone.png // @inject-into content // @noframes // ==/UserScript== /* jshint esversion: 6 */ setTimeout( () => document.querySelectorAll("[style*=user-select]").forEach(item => item.style.userSelect = "text"), 2000); // The document-idle event is not enough to run this code so it waits 2 secondes