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 Anton Shashok द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Runs on Youtube.com/TV and adds volume control to the player controls panel"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube TV Volume control एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } |