textmechanic.com remove patreon banner

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

当前为 2016-01-14 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name textmechanic.com remove patreon banner
  3. // @namespace english
  4. // @description textmechanic.com remove patreon banner and maybe more in the future
  5. // @include http*://*textmechanic.com*
  6. // @version 1.0
  7. // @run-at document-start
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11. // Main - Collapse the Greasy Fork Header
  12.  
  13. var style = document.createElement('style');
  14. style.type = 'text/css';
  15. style.innerHTML = ' .patreon,.textwidget img{display:none;} ';
  16. document.getElementsByTagName('head')[0].appendChild(style);