CSDN 博客登入後複製解決方法

CSDN 博客每次都會要求登入後複製,非常麻煩。只需要在按下 F12 進入 console 後貼上以下的指令即可。

1
javascript:window.oncontextmenu=document.oncontextmenu=document.oncopy=null; [...document.querySelectorAll('body')].forEach(dom => dom.outerHTML = dom.outerHTML); [...document.querySelectorAll('body, body *')].forEach(dom => {['onselect', 'onselectstart', 'onselectend', 'ondragstart', 'ondragend', 'oncontextmenu', 'oncopy'].forEach(ev => dom.removeAttribute(ev)); dom.style['user-select']='auto';});

CSDN 博客登入後複製解決方法
https://fffelix-huang.github.io/posts/csdn-copy/
Author
老鼠
Posted on
April 6, 2024
Licensed under