A script that enables you to edit Text on ANY webpage.
当前为
// ==UserScript==
// @name Edit Text On Webpage
// @namespace http://tampermonkey.net/
// @version 1.2.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 https://*
// @match http://*
// @license MIT
// @grant none
// ==/UserScript==
document.addEventListener('keydown', function(event) {
if (event.keyCode === 112) {
document.designMode='on'
}
if (event.keyCode === 113) {
document.designMode='off'
}
});