您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically load full content when opening an article in Inoreader
// ==UserScript== // @name Inoreader Auto-Load Full Article // @namespace elddc // @version 1.1 // @description Automatically load full content when opening an article in Inoreader // @author Elddc // @match https://www.inoreader.com/* // @grant none // ==/UserScript== //----- configure (change as desired) ----- const excludedSources = ['The Associated Press']; //subscriptions to exclude from auto-load const waitTime = 200; //time in ms to wait for page load (1 sec: 1000ms) //----------------------------------------- loadFullArticle(); window.onpopstate = loadFullArticle; function loadFullArticle() { if (window.location.pathname.includes('article/')) { setTimeout(() => { try { const source = document.querySelector('.article_subtitle_author_wrapper'); const button = document.querySelector('.icon-article_topbar_mobilize_empty'); if (!excludedSources.includes(source.innerHTML.trim())) { button.click(); } } catch (err) { console.log('page has not loaded'); } }, waitTime); } }