实用代码使用浏览器添加书签方式来一键获取网页所需内容链接技巧分享

图片[1]-实用代码使用浏览器添加书签方式来一键获取网页所需内容链接技巧分享-轻刻年轮

说明

有时候需要复制当前网页的标题和网址来想分享一下,

比如看到一个有意思的文章或者网站。

部分浏览器会自带这个功能,

但是我还是喜欢很酷得呢

下面采用浏览器书签来获取网页所需内容链接

代码

复制网页标题
javascript:(function(){ const el = document.createElement('textarea'); el.value = decodeURIComponent(document.title); document.body.appendChild(el); el.select(); document.execCommand('copy'); document.body.removeChild(el); })();
复制标题+链接
javascript:(function(){ const el = document.createElement('textarea'); el.value = decodeURIComponent(document.title + '\n' + document.URL); document.body.appendChild(el); el.select(); document.execCommand('copy'); document.body.removeChild(el); })();
网页夜间模式
javascript:var a=document.createElement('div');a.innerHTML='<div style="position:fixed;background-color:#000;top:0;left:0;z-index:999999;pointer-events:none;opacity:0.35;width:100%;height:100%"></div>';document.body.appendChild(a);
显示明文密码
javascript:var intput = document.getElementsByTagName('Input');for(var i=0;i<intput.length;i++) {if(intput[i].type.toUpperCase()=='PASSWORD'){intput[i].setAttribute("type","text");}}
解除网页限制
javascript:"use strict";!function(){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})}),alert("解除限制成功啦!")}();
网页内容自由在线编辑
javascript:"use strict";!function(){"true"===document.body.getAttribute("contenteditable")?(document.body.setAttribute("contenteditable",!1),alert("网页不能编辑啦!")):(document.body.setAttribute("contenteditable",!0),alert("网页可以编辑啦!"))}();
网页分屏
javascript:(function(w,d){var href=location.href;var website=w.prompt('请输入网址','http://')||href;d.write('<HTML><HEAD></HEAD><FRAMESET COLS=\'50%,*\'><FRAME SRC='+location.href+'><FRAME SRC='+website+'></FRAMESET></HTML>');})(window,document)

待更新实用。。。。

添加教程

图片[2]-实用代码使用浏览器添加书签方式来一键获取网页所需内容链接技巧分享-轻刻年轮
购买后下载不了源码或源码功能失效请联系小编,确认后可立即退款,请勿无理投诉
© 版权声明
THE END
喜欢就支持一下吧
点赞12赞赏 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容