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 |
公式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 |
Eメール | [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:*;" } } |