Twitch Live Notification

Get notified of live broadcast you're following on Twitch

Twitch Live Notification là gì?

Twitch Live Notification là một tiện ích mở rộng Chrome được phát triển bởi https://a2tt.me, và tính năng chính của nó là "Get notified of live broadcast you're following on Twitch".

Ả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 Twitch Live Notification

Tải xuống các tệp mở rộng Twitch Live Notification 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

                        This extension shows live channels you are following.
You only need to write down your ID once.

It periodically fetches information about the streamers you follow, 
shows streamers that are on live broadcast currently,
and also let you know when the live broadcast starts.

# Updates
23.09.09 Maintenance
20.09.20 Dark Mode
20.09.15 Notification
20.09.14                    

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

Tên Twitch Live Notification Twitch Live Notification
ID jchdobapodgpkopkldkegoopmkmpkbia
URL Chính Thức https://chromewebstore.google.com/detail/twitch-live-notification/jchdobapodgpkopkldkegoopmkmpkbia
Mô tả Get notified of live broadcast you're following on Twitch
Kích Thước Tệp 360 KB
Số Lần Cài Đặt 121
Phiên Bản Hiện Tại 1.1.0
Cập Nhật Lần Cuối 2023-09-10
Ngày Phát Hành 2020-09-14
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://a2tt.me
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/a2tt/Twitch-Live-Notification
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Get notified of live broadcast you're following on Twitch",
    "version": "1.1.0",
    "manifest_version": 3,
    "name": "Twitch Live Notification",
    "action": {
        "default_icon": "\/img\/icon_16.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "\/img\/icon_16.png",
        "32": "\/img\/icon_32.png",
        "48": "\/img\/icon_48.png",
        "128": "\/img\/icon_128.png"
    },
    "background": {
        "service_worker": "background.bundle.js",
        "type": "module"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "options.html"
    },
    "permissions": [
        "storage",
        "alarms",
        "notifications",
        "identity"
    ],
    "host_permissions": [
        "https:\/\/*.twitch.tv\/"
    ],
    "content_security_policy": {
        "extension_pages": "default-src 'self'; style-src 'self' 'unsafe-inline'; connect-src https:\/\/*.twitch.tv http:\/\/localhost:* ws:\/\/localhost:*;"
    }
}