Simple Edit

Edit text, Delete, and Paste Images on any page

// ==UserScript==
// @name         Simple Edit
// @namespace    http://tampermonkey.net/
// @version      1.0
// @license      MIT
// @description  Edit text, Delete, and Paste Images on any page
// @author       Unknown Hacker
// @match        *://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Extremely Simple
    document.designMode = "on";
})();