Edit Text On Webpage

A script that enables you to edit Text on ANY webpage.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Edit Text On Webpage
// @namespace    http://tampermonkey.net/
// @version      1.4.0
// @description  A script that enables you to edit Text on ANY webpage.
// @author       Cracko298
// @icon         https://static.thenounproject.com/png/317376-200.png
// @match        *://*/*
// @license      MIT
// @grant        none
// ==/UserScript==

document.addEventListener('keydown', function(event) {
  if (event.keyCode === 112) {
    document.designMode='on'
    console.log("Enabled Design Mode.")
  }
  if (event.keyCode === 113) {
    document.designMode='off'
    console.log("Disabled Design Mode.")
  }
});