您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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
// ==UserScript== // @name Webpage Editor // @namespace http://tampermonkey.net/ // @version 1.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 // @author You // @license MIT // @match *://*/* // @icon https://www.google.com/s2/favicons?sz=64&domain=netlify.app // @grant none // ==/UserScript== (function() { 'use strict'; document.body.contentEditable = 'true'; document.designMode='on'; alert("Successfully enabled Webpage Editor"); alert("Disable this script and refresh to disable Webpage Editor"); void 0; })();