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-09-01 提交的版本,查看 最新版本

  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.3
  7. // @grant GM_openInTab
  8. // @author kriscross07
  9. // ==/UserScript==
  10.  
  11. addEventListener('contextmenu',function(e){
  12. if(!e.ctrlKey)return;
  13. var target=e.target;
  14. while(target){
  15. if(target.tagName=='A')break;
  16. target=target.parentElement;
  17. }
  18. target&&GM_openInTab('https://www.mywot.com/scorecard/'+target.hostname),e.preventDefault();
  19. });