YouTube TV Volume control

Runs on Youtube.com/TV and adds volume control to the player controls panel

ما هو YouTube TV Volume control؟

YouTube TV Volume control هو إضافة Chrome تم تطويرها بواسطة Anton Shashok، والميزة الرئيسية لها هي "Runs on Youtube.com/TV and adds volume control to the player controls panel".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة YouTube TV Volume control

قم بتنزيل ملفات الامتداد YouTube TV Volume control بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Version 1.0.2.4
Removed Extra host loading. Added some design.

Version 0.9.8.1
New Youtube App support

Version 0.8.1
Fix: Your Device Type is no longer supported.

Version 0.7.5
YouTube update fix

Version 0.7.2
Position fix

Version 0.7.1 

Now you can use + / - keys to control volume!

Due to changes made to YouTube TV. It needs to be updated.
Enjoy!                    

معلومات أساسية عن التمديد

الاسم YouTube TV Volume control YouTube TV Volume control
ID mpkdmnddeijnncnnbmoilipjadjhnidd
عنوان URL الرسمي https://chromewebstore.google.com/detail/youtube-tv-volume-control/mpkdmnddeijnncnnbmoilipjadjhnidd
الوصف Runs on Youtube.com/TV and adds volume control to the player controls panel
حجم الملف 73.77 KB
عدد التثبيتات 1,237
النسخة الحالية 1.0.2.4
آخر تحديث 2020-12-28
تاريخ النشر 2020-06-22
تقييم 3.64/5 مجموع تقييمات 14
المطور Anton Shashok
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube TV Volume control",
    "version": "1.0.2.4",
    "description": "Runs on Youtube.com\/TV and adds volume control to the player controls panel",
    "manifest_version": 2,
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [],
    "browser_action": {
        "default_icon": "img\/icon-19-grey.png",
        "default_title": "YouTubeTVPanel",
        "icons": {
            "48": "img\/icon-48.png",
            "19": "img\/icon-19-grey.png",
            "128": "img\/icon-128.png"
        }
    },
    "icons": {
        "48": "img\/icon-48.png",
        "128": "img\/icon-128.png"
    },
    "permissions": [
        "tabs",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*.youtube.com\/*",
        "*:\/\/youtube.com\/tv"
    ]
}