Inoreader Auto-Load Full Article

Automatically load full content when opening an article in Inoreader

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==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);
    }
}