Ctrl Right Click MyWOT

When you hold Ctrl and right click a link, it will open the mywot.com scorecard for the link in a new tab.

目前为 2015-07-21 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Ctrl Right Click MyWOT
  3. // @namespace Ctrl Right Click MyWOT
  4. // @description When you hold Ctrl and right click a link, it will open the mywot.com scorecard for the link in a new tab.
  5. // @include *
  6. // @version 1.1
  7. // @grant GM_openInTab
  8. // @author kriscross07
  9. // ==/UserScript==
  10.  
  11. addEventListener('contextmenu',function(e){
  12. if(!e.ctrlKey||e.target.tagName!='A'&&e.target.parentElement.tagName!='A')return;
  13. var target=e.target.tagName=='A'?e.target:e.target.parentElement;
  14. GM_openInTab('https://www.mywot.com/scorecard/'+target.href.replace(/.*?:\/\//,''));
  15. e.preventDefault();
  16. });