让网页星号密码显示
for (var t = document.getElementsByTagName("input"), e = 0; e < t.length; e++)
"password" === t[e].getAttribute("type") && t[e].setAttribute("type", "text");
网页随心改
执行下面的代码可以随意编辑网页内容
"true" === document.body.getAttribute("contenteditable") ? (document.body.setAttribute("contenteditable", !1)) : (document.body.setAttribute("contenteditable", !0))
解除网页限制
解除网页无法复制等限制
var t=function(t){t.stopPropagation(),t.stopImmediatePropagation&&t.stopImmediatePropagation()};["copy","cut","contextmenu","selectstart","mousedown","mouseup","keydown","keypress","keyup"].forEach(function(e){document.documentElement.addEventListener(e,t,{capture:!0})})