YouTube TV Volume control

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

Was ist YouTube TV Volume control?

YouTube TV Volume control ist eine Chrome-Erweiterung, die von Anton Shashok entwickelt wurde, und ihr Hauptmerkmal ist "Runs on Youtube.com/TV and adds volume control to the player controls panel".

Erweiterungsscreenshots

screenshot

YouTube TV Volume control-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube TV Volume control-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name YouTube TV Volume control YouTube TV Volume control
ID mpkdmnddeijnncnnbmoilipjadjhnidd
Offizielle URL https://chromewebstore.google.com/detail/youtube-tv-volume-control/mpkdmnddeijnncnnbmoilipjadjhnidd
Beschreibung Runs on Youtube.com/TV and adds volume control to the player controls panel
Dateigröße 73.77 KB
Installationsanzahl 1,237
Aktuelle Version 1.0.2.4
Letztes Update 2020-12-28
Veröffentlichungsdatum 2020-06-22
Bewertung 3.64/5 Insgesamt 14 Bewertungen
Entwickler Anton Shashok
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}