YouTube TV Volume control
Runs on Youtube.com/TV and adds volume control to the player controls panel
What is YouTube TV Volume control?
YouTube TV Volume control is a Chrome extension developed by Anton Shashok, and its main feature is "Runs on Youtube.com/TV and adds volume control to the player controls panel".
Extension Screenshots
Download YouTube TV Volume control Extension CRX File
Download YouTube TV Volume control extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | YouTube TV Volume control |
ID | mpkdmnddeijnncnnbmoilipjadjhnidd |
Official URL | 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 |
File Size | 73.77 KB |
Installation Count | 1,237 |
Current Version | 1.0.2.4 |
Last Updated | 2020-12-28 |
Publish Date | 2020-06-22 |
Rating | 3.64/5 Total 14 Ratings |
Developer | Anton Shashok |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |