🏠 Home 

Ctlr+鼠标右键复制选中内容

2020/4/27 下午4:53:47


Install this script?
  1. // ==UserScript==
  2. // @name Ctlr+鼠标右键复制选中内容
  3. // @namespace Ctrl Right copy
  4. // @match *://*/*
  5. // @grant GM_setClipboard
  6. // @grant GM_notification
  7. // @version 1.2
  8. // @author -
  9. // @description 2020/4/27 下午4:53:47
  10. // ==/UserScript==
  11. document.oncontextmenu = (event) => {
  12. if(event.ctrlKey){
  13. event.preventDefault();
  14. const selectText = window.getSelection().toString().replace(/\n+/g, '\n\n');
  15. if (selectText.length) {
  16. GM_setClipboard(selectText);
  17. GM_notification({
  18. text: selectText,
  19. title: '复制到如下内容:',
  20. timeout: 2000,
  21. })
  22. }
  23. }
  24. };