Smart RSS

RSS Reader

什么是Smart RSS?

Smart RSS是由zakius开发的Chrome扩展程序,该扩展的主要功能是“RSS Reader”。

扩展截图

screenshot

下载Smart RSS扩展crx文件

下载Smart RSS扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Smart RSS allows you to follow new posts on your favorite websites exposing RSS and Atom feeds in a three pane view, providing background loading of new articles and allowing you to organize sources into folders.                    

扩展基本信息

名称 Smart RSS Smart RSS
ID eggggihfcaabljfpjiiaohloefmgejic
官方URL https://chromewebstore.google.com/detail/smart-rss/eggggihfcaabljfpjiiaohloefmgejic
简介 RSS Reader
文件大小 333 KB
安装次数 3,000
当前版本 2.25.2
更新时间 2023-03-09
上架时间 2020-06-20
评分 4.48/5 共25次评分
开发者 zakius
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/SmartRSS/Smart-RSS
帮助页面URL https://github.com/SmartRSS/Smart-RSS
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Smart RSS",
    "description": "RSS Reader",
    "manifest_version": 2,
    "version": "2.25.2",
    "background": {
        "page": "index.html"
    },
    "permissions": [
        "unlimitedStorage",
        "contextMenus",
        "alarms",
        "tabs",
        "",
        "notifications"
    ],
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "browser_action": {
        "default_title": "Smart RSS",
        "default_icon": {
            "19": "images\/reload_anim_1.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_end",
            "js": [
                "rssDetector\/scan.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "icons": {
        "19": "images\/icon19-arrow-orange.png",
        "48": "images\/48-inverted-round.png",
        "64": "images\/64-inverted-round.png",
        "96": "images\/96-inverted-round.png",
        "128": "images\/128-inverted-round.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+R",
                "mac": "Command+Shift+R",
                "chromeos": "Ctrl+Shift+R",
                "linux": "Ctrl+Shift+R"
            }
        }
    }
}