Fanfiction.net Highlight Enable

Lets you highlight things on fanfiction.net

  1. // ==UserScript==
  2. // @name Fanfiction.net Highlight Enable
  3. // @namespace https://github.com/ynx0/highlight-enable
  4. // @version 0.1.6
  5. // @description Lets you highlight things on fanfiction.net
  6. // @author Yaseen S./ThePhantomGamer
  7. // @match http://www.fanfiction.net/*
  8. // @match https://www.fanfiction.net/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. window.onload = window.setTimeout(
  16. function(){
  17. console.log("working...");
  18. document.getElementById("storytextp").setAttribute("style", "padding: 0px 0.5em");
  19. }, 150);
  20. })();
  21.  
  22.