Smart RSS

RSS Reader

Smart RSS là gì?

Smart RSS là một tiện ích mở rộng Chrome được phát triển bởi zakius, và tính năng chính của nó là "RSS Reader".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Smart RSS

Tải xuống các tệp mở rộng Smart RSS dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Smart RSS Smart RSS
ID eggggihfcaabljfpjiiaohloefmgejic
URL Chính Thức https://chromewebstore.google.com/detail/smart-rss/eggggihfcaabljfpjiiaohloefmgejic
Mô tả RSS Reader
Kích Thước Tệp 333 KB
Số Lần Cài Đặt 3,000
Phiên Bản Hiện Tại 2.25.2
Cập Nhật Lần Cuối 2023-03-09
Ngày Phát Hành 2020-06-20
Đánh Giá 4.48/5 Tổng số 25 Đánh Giá
Nhà Phát Triển zakius
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/SmartRSS/Smart-RSS
URL Trang Trợ Giúp https://github.com/SmartRSS/Smart-RSS
Ngôn Ngữ Được Hỗ Trợ 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"
            }
        }
    }
}