Tapas RSS Button

A webextension that adds an RSS feed button on tapas.io webcomic pages

Co je Tapas RSS Button?

Tapas RSS Button je rozšíření Chrome vyvinuté victal, a jeho hlavní funkcí je „A webextension that adds an RSS feed button on tapas.io webcomic pages“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Tapas RSS Button

Stáhněte si soubory rozšíření Tapas RSS Button ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Tapas.io is a platform for publishing and reading webcomics and webnovels and, while it still provides RSS feeds for the series it hosts, there is no UI component to access these feeds.

This webextension restores such functionality, adding an 'RSS' button beside the existing 'Subscribe' buttons that allow for subscribing to a series inside the platform.

The only permissions requested by this extension are: 
- Access to data in https://tapas.io pages, since it is needed to add code to create the RSS button and link it to the series RSS feed on the page.
- Storage access to save and restore configurations                    

Základní Informace o Rozšíření

Název Tapas RSS Button Tapas RSS Button
ID oaodnnbbhbpcaoliplcpdhipcmgmpnnh
Oficiální URL https://chromewebstore.google.com/detail/tapas-rss-button/oaodnnbbhbpcaoliplcpdhipcmgmpnnh
Popis A webextension that adds an RSS feed button on tapas.io webcomic pages
Velikost souboru 70.32 KB
Počet instalací 277
Aktuální Verze 1.1.0
Poslední Aktualizace 2023-04-16
Datum Vydání 2020-06-30
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář victal
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://github.com/victal/tapas-rss/issues
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Tapas RSS Button",
    "version": "1.1.0",
    "description": "A webextension that adds an RSS feed button on tapas.io webcomic pages",
    "icons": {
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png",
        "128": "icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/tapas.io\/series\/*",
                "*:\/\/tapas.io\/episode\/*",
                "*:\/\/m.tapas.io\/series\/*",
                "*:\/\/m.tapas.io\/episode\/*"
            ],
            "js": [
                "src\/mutation.js",
                "src\/add_rss.js",
                "src\/index.js"
            ],
            "css": [
                "css\/add_rss.css"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_ui": {
        "page": "src\/options\/index.html"
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{395c081e-9f3b-4218-9587-bcbfa467c3b6}"
        }
    }
}