Removes non-essential blocks from who.is website -- Donate: - Fund-raising for my IT creations - https://pledgie.com/campaigns/28629 Donate through pledgie.com or PayPal -- https://flattr.com/profile/pushka - Donate through flattr.com
当前为
// ==UserScript==
// @name Who.is Remove Dross
// @namespace english
// @description Removes non-essential blocks from who.is website -- Donate: - Fund-raising for my IT creations - https://pledgie.com/campaigns/28629 Donate through pledgie.com or PayPal -- https://flattr.com/profile/pushka - Donate through flattr.com
// @include http*://who.is*
// @exclude http*://*reddit.com*
// @version 1.5
// @grant GM_addStyle
// ==/UserScript==
// Main
$(document).ready(function(){
$('.name-dot-com-video').hide();
$('.call-to-action').hide();
});