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 提交的版本,檢視 最新版本

// ==UserScript==
// @name        Ctrl Right Click MyWOT
// @namespace   Ctrl Right Click MyWOT
// @description When you hold Ctrl and right click a link, it will open the mywot.com scorecard for the link in a new tab.
// @include     *
// @version     1
// @grant       GM_openInTab
// @author      kriscross07
// ==/UserScript==

console.log('Ctrl+Right Click=MyWOT initializing.');

addEventListener('contextmenu',function(e){
  if(!e.ctrlKey||e.target.tagName!='A'&&e.target.parentElement.tagName!='A')return;
  var target=e.target.tagName=='A'?e.target:e.target.parentElement;
  GM_openInTab('https://www.mywot.com/scorecard/'+target.href.replace(/.*?:\/\//,''));
  e.preventDefault();
});