Change text on any site.
// ==UserScript== // @name Site Editor // @license MIT // @namespace http://tampermonkey.net/ // @version 0.1 // @description Change text on any site. // @author that-damn-doge // @match http*://*/* // @exclude https://docs.google.com/*/* // @exclude https://sites.google.com/*/* // @grant none // ==/UserScript== javascript:document.body.contentEditable = true; void 0;