自动加载Inoreader文章内容:auto load full content of articles in inoreader web

自动加载Inoreader文章全部内容,而非摘要:auto load full content of articles in inoreader web

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         自动加载Inoreader文章内容:auto load full content of articles in inoreader web
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  自动加载Inoreader文章全部内容,而非摘要:auto load full content of articles in inoreader web
// @author       leezw37
// @match        http*://*.inoreader.com/*/*
// @icon         http://www.inoreader.com/favicon.ico
// @grant        none
// @license MIT
// ==/UserScript==

window.setInterval(function(){
    window.addEventListener("hashchange", myFunction());

    function myFunction(){
        var fulltext = document.getElementsByClassName("article_footer_buttons icon16 icon-article_topbar_mobilize_empty")[0];
        var mobilized = document.getElementsByClassName("article_content")[0];
        if (fulltext && mobilized){
            fulltext.click();
        }
    }
},2000);


/*
window.setInterval(function(){
    var isclick = false;
    window.addEventListener("hashchange", myFunction());
    //console.log("点击");

    function myFunction(){
//        window.setTimeout(function(){
            if(!isclick){
                var fulltext = document.getElementsByClassName("article_footer_buttons icon16 icon-article_topbar_mobilize_empty")[0];
                var mobilized = document.getElementsByClassName("article_content")[0];
                if (fulltext && mobilized){
                    isclick = true;
                    fulltext.click();
//                    console.log("点击");
                }
            };

//        },2000);
    };
},2000);
*/