Greasy Fork

让网页内容可编辑

允许网页的内容自由编辑

// ==UserScript==
// @name         让网页内容可编辑
// @namespace    http://tampermonkey.net/
// @version      2024-03-01
// @license     MIT
// @description  允许网页的内容自由编辑
// @author       You
// @match      *://*/*
// @icon         
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
     document.designMode='on'
    // Your code here...
})();