Automatically makes all pages editable
// ==UserScript==
// @name Always Editable
// @namespace yournamespace
// @version 1.0
// @description Automatically makes all pages editable
// @author you
// @match *://*/*
// @grant none
// ==/UserScript==
(function () {
"use strict";
document.body.contentEditable = "true";
document.designMode = "on";
})();