textmechanic.com remove patreon banner and maybe more in the future
当前为
- // ==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);