Inoreader Auto-Load Full Article

Automatically load full content when opening an article in Inoreader

目前為 2021-06-21 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Inoreader Auto-Load Full Article
// @namespace    elddc
// @version      1.0
// @description  Automatically load full content when opening an article in Inoreader
// @author       Elddc
// @match        https://www.inoreader.com/*
// @grant        none
// ==/UserScript==

/* jshint esversion: 6 */
(function () {
	//----- 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.getElementsByClassName('boldlink')[0];
					const button = document.getElementsByClassName('icon-button-mobilize-empty')[0];
					if (!excludedSources.includes(source.innerHTML.trim())) {
						button.click();
					}
				} catch (err) {
					console.log('page has not loaded');
				}
			}, waitTime);
		}
	}
})();