page editor

works if you can find the buttons, allows you to edit the page.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         page editor
// @namespace    http://tampermonkey.net/
// @version      0.1.2
// @description  works if you can find the buttons, allows you to edit the page.
// @author       twarped
// @include      https://*/*
// @include      http://*/*
// @exclude      *docs.google.com/*/*
// @exclude      *sites.google.com/*/edit
// @grant        none
// ==/UserScript==


var editon = document. createElement("button");
editon. innerHTML = "Edit On";
var body = document. getElementsByTagName("body")[0];
body. appendChild(editon);
editon.addEventListener ("click", function() {
javascript:document.body.contentEditable = 'true'; document.designMode='on'; void 0
});
   var editoff = document. createElement("button");
editoff. innerHTML = "Edit Off";
    var head = document. getElementsByTagName("body")[0];
body. appendChild(editoff);
editoff.addEventListener ("click", function() {
    javascript:document.body.contentEditable = 'false'; document.designMode='off'; void 0
});