Autofull Inoreader For Safari

Automatically load full content article in Inoreader for Safari

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 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();