Webpage Editor

Enable this script to edit any webpage. Disable this script to stop editing. You need this extension to use Webpage Editor: https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=en

安装此脚本
作者推荐脚本

您可能也喜欢Super Auto Clicker

安装此脚本
  1. // ==UserScript==
  2. // @name Webpage Editor
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.5
  5. // @description Enable this script to edit any webpage. Disable this script to stop editing. You need this extension to use Webpage Editor: https://chrome.google.com/webstore/detail/tampermonkey/dhdgffkkebhmkfjojejmpbldmpobfkfo?hl=en
  6. // @author You
  7. // @license MIT
  8. // @match *://*/*
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=netlify.app
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. document.body.contentEditable = 'true'; document.designMode='on'; alert("Successfully enabled Webpage Editor"); alert("Disable this script and refresh to disable Webpage Editor"); void 0;
  17. })();