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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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"
]
}
} | |