Edit Text On Webpage

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

当前为 2023-05-25 提交的版本,查看 最新版本

// ==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.")
  }
});

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址