拷贝标签页标题+链接

按下 ctrl(cmd)-shift-c 拷贝当前标签页标题+链接至剪贴板,例如在百度首页拷贝为“百度一下,你就知道: www.baidu.com”

  1. // ==UserScript==
  2. // @name Copy Tab Title+URL
  3. // @name:zh-CN 拷贝标签页标题+链接
  4. // @namespace http://tampermonkey.net/
  5. // @version 0.1
  6. // @author Zhou Yucheng
  7. // @description press ctrl(cmd)-shift-c to copy the tab tile with url in clipboard, e.g., "Stack Overflow - Where Developers Learn, Share, & Build Careers: https://stackoverflow.com/"
  8. // @description:zh-CN 按下 ctrl(cmd)-shift-c 拷贝当前标签页标题+链接至剪贴板,例如在百度首页拷贝为“百度一下,你就知道: www.baidu.com”
  9. // @license MIT
  10. // @include *
  11. // @grant GM_setClipboard
  12. // ==/UserScript==
  13.  
  14. // TODO: replace @include with @match *://*/*
  15. (function () {
  16. 'use strict';
  17. document.addEventListener("keydown", function (e) {
  18. if ((e.key === 'c' || e.keyCode === 67) && (e.ctrlKey || e.metaKey) && e.shiftKey ) {
  19. let str = document.title + ": " + location.href;
  20. GM_setClipboard(str);
  21. //console.log(str);
  22. }
  23. });
  24. })();