TTV TV
Opens a new Twitch.tv stream when a user's currently watched one closes.
TTV TVคืออะไร?
TTV TV เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Alex Berliner และคุณลักษณะหลักของมันคือ "Opens a new Twitch.tv stream when a user's currently watched one closes."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย TTV TV
ดาวน์โหลดไฟล์ส่วนขยาย 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | TTV TV |
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" ] } } |