剪贴板净化2

清除掘金网站在复制的时候添加一些个人信息,原来的剪切板净化已经不能使用了

  1. // ==UserScript==
  2. // @name 剪贴板净化2
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description 清除掘金网站在复制的时候添加一些个人信息,原来的剪切板净化已经不能使用了
  6. // @author zsj
  7. // @match *://juejin.cn/*
  8. // @icon https://lf3-cdn-tos.bytescm.com/obj/static/xitu_juejin_web//static/favicons/favicon-32x32.png
  9. // @run-at document-end
  10. // @license GPL-3.0 License
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. function clear(e){
  16. e.preventDefault();
  17. // 获取用户选择的文本
  18. var text = window.getSelection().toString();
  19. // 注入剪贴板中
  20. if (event.clipboardData) {
  21. return event.clipboardData.setData('text', text); // 将信息写入粘贴板
  22. } else {
  23. // 兼容IE
  24. return window.clipboardData.setData("text", text);
  25. }
  26.  
  27. }
  28. document.addEventListener('copy',clear)
  29. // Your code here...
  30. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址