Greasy Fork 支持简体中文。

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

// ==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.2
// @grant       GM_openInTab
// @author      kriscross07
// ==/UserScript==

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(/.*?:\/\//,''));
  GM_openInTab('https://www.mywot.com/scorecard/'+target.hostname);
  e.preventDefault();
});