Smart RSS

RSS Reader

Cos'è Smart RSS?

Smart RSS è un'estensione di Chrome sviluppata da zakius, e la sua funzione principale è "RSS Reader".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Smart RSS

Scarica i file di estensione Smart RSS in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Smart RSS Smart RSS
ID eggggihfcaabljfpjiiaohloefmgejic
URL Ufficiale https://chromewebstore.google.com/detail/smart-rss/eggggihfcaabljfpjiiaohloefmgejic
Descrizione RSS Reader
Dimensione del File 333 KB
Conteggio Installazioni 3,000
Versione Corrente 2.25.2
Ultimo Aggiornamento 2023-03-09
Data di Pubblicazione 2020-06-20
Valutazione 4.48/5 Totale 25 Valutazioni
Sviluppatore zakius
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/SmartRSS/Smart-RSS
URL della Pagina di Aiuto https://github.com/SmartRSS/Smart-RSS
Lingue Supportate 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"
            }
        }
    }
}