YouTube TV Volume control

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

Qu'est-ce que YouTube TV Volume control ?

YouTube TV Volume control est une extension Chrome développée par Anton Shashok, et sa fonction principale est "Runs on Youtube.com/TV and adds volume control to the player controls panel".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension YouTube TV Volume control

Téléchargez les fichiers d'extension YouTube TV Volume control au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom YouTube TV Volume control YouTube TV Volume control
ID mpkdmnddeijnncnnbmoilipjadjhnidd
URL Officiel https://chromewebstore.google.com/detail/youtube-tv-volume-control/mpkdmnddeijnncnnbmoilipjadjhnidd
Description Runs on Youtube.com/TV and adds volume control to the player controls panel
Taille du Fichier 73.77 KB
Nombre d'Installations 1,237
Version Actuelle 1.0.2.4
Dernière Mise à Jour 2020-12-28
Date de Publication 2020-06-22
Évaluation 3.64/5 Total 14 Évaluations
Développeur Anton Shashok
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}