Tapas RSS Button

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

Was ist Tapas RSS Button?

Tapas RSS Button ist eine Chrome-Erweiterung, die von victal entwickelt wurde, und ihr Hauptmerkmal ist "A webextension that adds an RSS feed button on tapas.io webcomic pages".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Tapas RSS Button-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tapas RSS Button-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

                        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                    

Grundlegende Informationen zur Erweiterung

Name Tapas RSS Button Tapas RSS Button
ID oaodnnbbhbpcaoliplcpdhipcmgmpnnh
Offizielle URL https://chromewebstore.google.com/detail/tapas-rss-button/oaodnnbbhbpcaoliplcpdhipcmgmpnnh
Beschreibung A webextension that adds an RSS feed button on tapas.io webcomic pages
Dateigröße 70.32 KB
Installationsanzahl 277
Aktuelle Version 1.1.0
Letztes Update 2023-04-16
Veröffentlichungsdatum 2020-06-30
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler victal
E-Mail [email protected]
Zahlungsart free
Hilfeseite URL https://github.com/victal/tapas-rss/issues
Unterstützte Sprachen 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}"
        }
    }
}