Smart RSS

RSS Reader

Co to jest Smart RSS?

Smart RSS to rozszerzenie Chrome opracowane przez zakius, a jego główną funkcją jest „RSS Reader”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Smart RSS

Pobierz pliki rozszerzeń Smart RSS w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Smart RSS Smart RSS
ID eggggihfcaabljfpjiiaohloefmgejic
Oficjalny URL https://chromewebstore.google.com/detail/smart-rss/eggggihfcaabljfpjiiaohloefmgejic
Opis RSS Reader
Rozmiar pliku 333 KB
Liczba instalacji 3,000
Aktualna Wersja 2.25.2
Ostatnia Aktualizacja 2023-03-09
Data Publikacji 2020-06-20
Ocena 4.48/5 Łącznie 25 Oceny
Deweloper zakius
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/SmartRSS/Smart-RSS
Adres URL Strony Pomocy https://github.com/SmartRSS/Smart-RSS
Obsługiwane Języki 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"
            }
        }
    }
}