Smart RSS

RSS Reader

Was ist Smart RSS?

Smart RSS ist eine Chrome-Erweiterung, die von zakius entwickelt wurde, und ihr Hauptmerkmal ist "RSS Reader".

Erweiterungsscreenshots

screenshot

Smart RSS-Erweiterungs-CRX-Datei herunterladen

Laden Sie Smart RSS-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Smart RSS Smart RSS
ID eggggihfcaabljfpjiiaohloefmgejic
Offizielle URL https://chromewebstore.google.com/detail/smart-rss/eggggihfcaabljfpjiiaohloefmgejic
Beschreibung RSS Reader
Dateigröße 333 KB
Installationsanzahl 3,000
Aktuelle Version 2.25.2
Letztes Update 2023-03-09
Veröffentlichungsdatum 2020-06-20
Bewertung 4.48/5 Insgesamt 25 Bewertungen
Entwickler zakius
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/SmartRSS/Smart-RSS
Hilfeseite URL https://github.com/SmartRSS/Smart-RSS
Unterstützte Sprachen 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"
            }
        }
    }
}