Removes non-essential blocks from who.is website
当前为
// ==UserScript==
// @name Who.is Remove Dross
// @namespace english
// @description Removes non-essential blocks from who.is website
// @include http*://who.is*
// @exclude http*://*reddit.com*
// @version 1.2
// @grant GM_addStyle
// ==/UserScript==
// Main
$(document).ready(function(){
$('.name-dot-com-video').hide();
$('.call-to-action').hide();
}