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 |
电子邮箱 | [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" } } |