Fanfiction.net - contenteditable

Make stories on fanfiction.net editable

  1. // ==UserScript==
  2. // @name Fanfiction.net - contenteditable
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Make stories on fanfiction.net editable
  6. // @author NickKolok
  7. // @match https://www.fanfiction.net/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=fanfiction.net
  9. // @grant none
  10. // @license GPL-3.0
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. document.getElementById('storytext').contentEditable="true";
  17. })();