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.

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