Autofull Inoreader For Safari

Automatically load full content article in Inoreader for Safari

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Autofull Inoreader For Safari
// @name:tr      Safari için Otofull Inoreader
// @namespace    aytacesmebasi
// @version      1.1
// @description  Automatically load full content article in Inoreader for Safari
// @description:tr  Safari'de açtığınız Inoreader'da tam içerikli makaleyi otomatik olarak yükleyin.
// @author       aytacesmebasi
// @match        https://www.inoreader.com/all_articles
// @grant        none
// ==/UserScript==

//----- configure (change as desired) -----
const waitTime = 200; // time in ms to wait for page load (1 sec: 1000ms)
//-----------------------------------------

// Check and load full article if "article_dialog" is visible
function checkAndLoadFullArticle() {
    try {
        const articleDialog = document.getElementById('article_dialog');
        if (articleDialog && window.getComputedStyle(articleDialog).display === 'block') {
            const button = document.querySelector('.icon-article_topbar_mobilize_empty');
            if (button) {
                button.click();
            }
        }
    } catch (err) {
        console.log('An error occurred:', err);
    }
}

// Run the check on page load and at regular intervals
setInterval(checkAndLoadFullArticle, waitTime);
checkAndLoadFullArticle();