Tapas RSS Button

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

Tapas RSS Buttonとは何ですか?

Tapas RSS Buttonはvictalによって開発されたChromeの拡張機能で、その主な機能は「A webextension that adds an RSS feed button on tapas.io webcomic pages」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Tapas RSS Button拡張機能のCRXファイルをダウンロード

Tapas RSS Button拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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}"
        }
    }
}