textmechanic.com remove patreon banner

textmechanic.com remove patreon banner and maybe more in the future

目前為 2016-01-14 提交的版本,檢視 最新版本

// ==UserScript==
// @name        textmechanic.com remove patreon banner 
// @namespace   english
// @description textmechanic.com remove patreon banner and maybe more in the future
// @include     http*://*textmechanic.com*
// @version     1.0
// @run-at document-start
// @grant       GM_addStyle
// ==/UserScript==

// Main - Collapse the Greasy Fork Header

var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '           .patreon,.textwidget img{display:none;}          ';
document.getElementsByTagName('head')[0].appendChild(style);