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 |
| 官方網址 | 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"
]
}
} | |