Tapas RSS Button

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

Tapas RSS Button क्या है?

Tapas RSS Button victal द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A webextension that adds an RSS feed button on tapas.io webcomic pages"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tapas RSS Button एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम Tapas RSS Button Tapas RSS Button
ID oaodnnbbhbpcaoliplcpdhipcmgmpnnh
आधिकारिक URL https://chromewebstore.google.com/detail/tapas-rss-button/oaodnnbbhbpcaoliplcpdhipcmgmpnnh
विवरण A webextension that adds an RSS feed button on tapas.io webcomic pages
फ़ाइल का आकार 70.32 KB
स्थापना संख्या 277
वर्तमान संस्करण 1.1.0
अंतिम अपडेट 2023-04-16
प्रकाशन तिथि 2020-06-30
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर victal
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://github.com/victal/tapas-rss/issues
समर्थित भाषाएँ 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}"
        }
    }
}