When you hold Ctrl and right click a link, it will open the mywot.com scorecard for the link in a new tab.
当前为
// ==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();
});