Twitch Live Notification

Get notified of live broadcast you're following on Twitch

什么是Twitch Live Notification?

Twitch Live Notification是由https://a2tt.me开发的Chrome扩展程序,该扩展的主要功能是“Get notified of live broadcast you're following on Twitch”。

扩展截图

screenshot
screenshot
screenshot

下载Twitch Live Notification扩展crx文件

下载Twitch Live Notification扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Twitch Live Notification Twitch Live Notification
ID jchdobapodgpkopkldkegoopmkmpkbia
官方URL https://chromewebstore.google.com/detail/twitch-live-notification/jchdobapodgpkopkldkegoopmkmpkbia
简介 Get notified of live broadcast you're following on Twitch
文件大小 360 KB
安装次数 121
当前版本 1.1.0
更新时间 2023-09-10
上架时间 2020-09-14
评分 5.00/5 共1次评分
开发者 https://a2tt.me
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/a2tt/Twitch-Live-Notification
支持的语言 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:*;"
    }
}