您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Refine Inoreader article layout to be wider, increase the height of list view items, and hide the subscription button. Also fix the failed images.
当前为
// ==UserScript== // @name Inoreader Enhancement // @namespace http://tampermonkey.net/ // @version 0.5 // @description Refine Inoreader article layout to be wider, increase the height of list view items, and hide the subscription button. Also fix the failed images. // @author henryxrl // @include http*://*.inoreader.com/* // @icon http://www.inoreader.com/favicon.ico // @grant GM_addStyle // @grant GM_xmlhttpRequest // @license MIT // ==/UserScript== (function () { var css =` #smarttoc-toast { display: none !important; } #sb_rp_upgrade { display: none !important; } .reader_pane_view_style_0 .ar { margin: 0 10px 0 10px !important; } .article_title_wrapper { margin: 5px 2px 5px 2px !important; } body.article_alignment_1 .reader_pane_view_style_1 .ar { width: 90% !important; } .article_full_contents { width: 80% !important; } .article_content, .article_footer { max-width: 100% !important; } .article_title { width: 100% !important; } `; GM_addStyle(css); })(); // fix failed images const fixImage = () => { document.querySelectorAll('img[referrerpolicy="no-referrer"]').forEach(img => { console.log(1); img.setAttribute('referrerpolicy', 'referrer'); }); }; setInterval(fixImage, 2000)
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址