// ==UserScript== // @name 网站可编辑化 // @namespace 醉_Code // @version 0.2 // @description 让你可以自由的编辑网站上的文字!!! // @author 醉_Code // @match * // @include * // @icon https://www.google.com/s2/favicons?sz=64&domain=csdn.net // @grant unsafeWindow // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; var h1 = document.getElementsByTagName("h1"); h1[0].innerHTML = h1[0].innerHTML+""; h1[0].childNodes[1].onclick = function() { // 设置在此处单击#button时要发生的事件 //code if(document.body.contentEditable=="true"){ document.body.contentEditable="inherit"; alert("已成功关闭编辑功能"); } else{ document.body.contentEditable="true"; alert("已成功开启编辑功能"); } }; })();