Twitch Tabs
Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online!
Twitch Tabsとは何ですか?
Twitch TabsはRocketBuilt Appsによって開発されたChromeの拡張機能で、その主な機能は「Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online!」です。
拡張機能のスクリーンショット
Twitch Tabs拡張機能のCRXファイルをダウンロード
Twitch Tabs拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Simply log in to you Twitch account through the extension and set your favorite streams! Easily track your favorite streamers and see when they are online. Twitch Tabs allows you to open all of your favorite online Twitch streams in tabs with the click of a button or individual streams. Update 0.4.1: Implemented Chrome Notifications with the ability to toggle on and off Bug fixes
拡張機能の基本情報
名前 | Twitch Tabs |
ID | bnaleaigeeaockjojmidjnpfkhaobdbg |
公式URL | https://chromewebstore.google.com/detail/twitch-tabs/bnaleaigeeaockjojmidjnpfkhaobdbg |
説明 | Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online! |
ファイルサイズ | 1.19 MB |
インストール数 | 86 |
現在のバージョン | 0.4.1 |
最終更新日 | 2020-12-26 |
公開日 | 2020-12-25 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | RocketBuilt Apps |
Eメール | [email protected] |
支払い方法 | free |
ヘルプページのURL | https://github.com/tylern88/streamertabs/issues |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Twitch Tabs", "version": "0.4.1", "description": "Twitch Tabs allows you to open all of your favorite Twitch streamers in tabs and get notified when they go online!", "permissions": [ "identity", "storage", "notifications", "alarms", "https:\/\/id.twitch.tv\/*" ], "background": { "scripts": [ "static\/js\/background.js" ], "persistent": false }, "content_scripts": [ { "js": [ "static\/js\/content.js" ], "matches": [ "https:\/\/*.twitch.tv\/*" ] } ], "icons": { "192": "logo192.png" }, "browser_action": { "default_icon": { "192": "logo192.png" }, "default_title": "Twitch Tabs", "default_popup": "popup.html" }, "options_ui": { "page": "options.html" } } |