TTV TV
Opens a new Twitch.tv stream when a user's currently watched one closes.
什么是TTV TV?
TTV TV是由Alex Berliner开发的Chrome扩展程序,该扩展的主要功能是“Opens a new Twitch.tv stream when a user's currently watched one closes.”。
扩展截图
下载TTV TV扩展crx文件
下载TTV TV扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Provides a simple UI to arrange a list of twitch.tv streamers to switch to when your watched stream goes offline. 扩展基本信息
| 名称 | |
| ID | bnmlihhhebgoiihoaicfmahhcheecoaa |
| 官方URL | https://chromewebstore.google.com/detail/ttv-tv/bnmlihhhebgoiihoaicfmahhcheecoaa |
| 简介 | Opens a new Twitch.tv stream when a user's currently watched one closes. |
| 文件大小 | 498 KB |
| 安装次数 | 60 |
| 当前版本 | 1.0.1 |
| 更新时间 | 2016-05-01 |
| 上架时间 | 2016-05-01 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | Alex Berliner |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/Monorail/TTVTV |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "TTV TV",
"description": "Opens a new Twitch.tv stream when a user's currently watched one closes.",
"version": "1.0.1",
"browser_action": {
"default_icon": "libs\/images\/icon128.png"
},
"icons": {
"16": "libs\/images\/icon16.png",
"48": "libs\/images\/icon48.png",
"128": "libs\/images\/icon128.png"
},
"web_accessible_resources": [
"popup.html",
"libs\/angular.min.js"
],
"options_ui": {
"page": "options.html",
"chrome_style": true
},
"permissions": [
"https:\/\/api.twitch.tv\/*",
"activeTab",
"tabs",
"storage"
],
"optional_permissions": [
"history"
],
"content_scripts": [
{
"matches": [
"*:\/\/*.twitch.tv\/*"
],
"js": [
"libs\/jquery-2.2.1.min.js",
"content.js"
],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"background.js"
]
}
} | |