Follow websites (RSS Reader)

Follow any website which offers an RSS feed and decide how to receive messages, i.e. via Email, Telegram etc.

Vad är Follow websites (RSS Reader)?

Follow websites (RSS Reader) är en Chrome-tillägg utvecklad av https://follow.it, och dess huvudfunktion är "Follow any website which offers an RSS feed and decide how to receive messages, i.e. via Email, Telegram etc.".

Tilläggsskärmbilder

screenshot

Ladda ner Follow websites (RSS Reader)-förlängningens CRX-fil

Ladda ner Follow websites (RSS Reader)-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        The easiest tool to follow websites (or to be more precise: their RSS feeds).                    

Grundläggande Information om Tillägg

Namn Follow websites (RSS Reader) Follow websites (RSS Reader)
ID ncepinjclfmeppajckcgpamhfpjnjabn
Officiell webbadress https://chromewebstore.google.com/detail/follow-websites-rss-reade/ncepinjclfmeppajckcgpamhfpjnjabn
Beskrivning Follow any website which offers an RSS feed and decide how to receive messages, i.e. via Email, Telegram etc.
Filstorlek 1.38 MB
Antal Installationer 1,158
Aktuell Version 0.1.3
Senast Uppdaterad 2024-03-04
Publiceringsdatum 2022-06-18
Betyg 5.00/5 Totalt 7 Betyg
Utvecklare https://follow.it
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://follow.it/directory
URL till Sekretesspolicy Sidan https://follow.it/info/privacy
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Follow websites (RSS Reader)",
    "version": "0.1.3",
    "description": "Follow any website which offers an RSS feed and decide how to receive messages, i.e. via Email, Telegram etc.",
    "icons": {
        "16": "img\/icons\/icon-16.png",
        "48": "img\/icons\/icon-48.png",
        "128": "img\/icons\/icon-128.png"
    },
    "background": {
        "service_worker": "background\/index.js"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "js": [
                "browser-polyfill.min.js",
                "content\/index.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "img\/icons\/icon-48.png"
        }
    },
    "permissions": [
        "tabs",
        "storage",
        "alarms"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/follow.it\/*",
            "https:\/\/*.follow.it\/*"
        ]
    },
    "manifest_version": 3
}