Edit Text On Webpage

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

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

  1. // ==UserScript==
  2. // @name Edit Text On Webpage
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.2.0
  5. // @description A script that enables you to edit Text on ANY webpage.
  6. // @author Cracko298
  7. // @icon https://static.thenounproject.com/png/317376-200.png
  8. // @match https://*
  9. // @match http://*
  10. // @license MIT
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. document.addEventListener('keydown', function(event) {
  15. if (event.keyCode === 112) {
  16. document.designMode='on'
  17. }
  18. if (event.keyCode === 113) {
  19. document.designMode='off'
  20. }
  21. });

QingJ © 2025

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