🏠 返回首頁 

Greasy Fork is available in English.

Inoreader去广告

去掉Inoreader的页面广告和升级按钮


安装此脚本?
  1. // ==UserScript==
  2. // @name Inoreader去广告
  3. // @description 去掉Inoreader的页面广告和升级按钮
  4. // @author heartnn
  5. // @version 1.0.0
  6. // @grant none
  7. // @noframes
  8. // @include http://www.inoreader.com/*
  9. // @include https://www.inoreader.com/*
  10. // @icon http://www.inoreader.com/favicon.ico
  11. // @namespace https://greasyfork.org/users/10250
  12. // ==/UserScript==
  13. /*jshint multistr: true */
  14. var styleEl = document.createElement('style');
  15. styleEl.type = 'text/css';
  16. styleEl.innerHTML = "\
  17. #sb_rp_tools,#sb_rp_notifications,#sb_rp_gear{margin-right:-74px;}\
  18. .block_article_ad,.ad_title,#sinner_container,#sb_rp_upgrade_button,div.trc_rbox_container,div.ad_size_large_rectangle,div.sinner_under_footer{display: none !important;}\
  19. #reader_pane.reader_pane_sinner{padding-right:0px;}\
  20. ";
  21. document.documentElement.appendChild(styleEl);