YouTube TV Volume control

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

Wat is YouTube TV Volume control?

YouTube TV Volume control is een Chrome-extensie ontwikkeld door Anton Shashok, en de belangrijkste functie is "Runs on Youtube.com/TV and adds volume control to the player controls panel".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie YouTube TV Volume control

Download YouTube TV Volume control-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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!                    

Basisinformatie over de Extensie

Naam YouTube TV Volume control YouTube TV Volume control
ID mpkdmnddeijnncnnbmoilipjadjhnidd
Officiële URL https://chromewebstore.google.com/detail/youtube-tv-volume-control/mpkdmnddeijnncnnbmoilipjadjhnidd
Beschrijving Runs on Youtube.com/TV and adds volume control to the player controls panel
Bestandsgrootte 73.77 KB
Aantal Installaties 1,237
Huidige Versie 1.0.2.4
Laatst Bijgewerkt 2020-12-28
Publicatiedatum 2020-06-22
Beoordeling 3.64/5 Totaal 14 Beoordelingen
Ontwikkelaar Anton Shashok
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    ]
}