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”。
擴展截圖
下載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 |
ID | jchdobapodgpkopkldkegoopmkmpkbia |
官方網址 | 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:*;" } } |