Make page editable with keyboard shortcut (contenteditable="true" feature)
// ==UserScript==
// @name Make page editable
// @namespace http://www.sunamo.cz/
// @version 0.1
// @description Make page editable with keyboard shortcut (contenteditable="true" feature)
// @author sunamo
// @match http*://*/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var h1 = document.getElementsByTagName("html")[0];
var att = document.createAttribute("contenteditable");
att.value = "true";
h1.setAttributeNode(att);
})();