Tapas RSS Button

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

Tapas RSS Button là gì?

Tapas RSS Button là một tiện ích mở rộng Chrome được phát triển bởi victal, và tính năng chính của nó là "A webextension that adds an RSS feed button on tapas.io webcomic pages".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tapas RSS Button

Tải xuống các tệp mở rộng Tapas RSS Button dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tapas RSS Button Tapas RSS Button
ID oaodnnbbhbpcaoliplcpdhipcmgmpnnh
URL Chính Thức https://chromewebstore.google.com/detail/tapas-rss-button/oaodnnbbhbpcaoliplcpdhipcmgmpnnh
Mô tả A webextension that adds an RSS feed button on tapas.io webcomic pages
Kích Thước Tệp 70.32 KB
Số Lần Cài Đặt 277
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2023-04-16
Ngày Phát Hành 2020-06-30
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển victal
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/victal/tapas-rss/issues
Ngôn Ngữ Được Hỗ Trợ 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}"
        }
    }
}