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
官方網址 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"
            }
        }
    }
}