Simple Edit

Edit text, Delete, and Paste Images on any page

  1. // ==UserScript==
  2. // @name Simple Edit
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @license MIT
  6. // @description Edit text, Delete, and Paste Images on any page
  7. // @author Unknown Hacker
  8. // @match *://*/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Extremely Simple
  16. document.designMode = "on";
  17. })();