YTQ - YouTube Quality Selector
A chrome plugin to automatically set the quality of YouTube videos
YTQ - YouTube Quality Selector क्या है?
YTQ - YouTube Quality Selector https://www.codemic.co.za द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome plugin to automatically set the quality of YouTube videos"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YTQ - YouTube Quality Selector एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Tired of YouTube automatically dropping the quality to suit bandwith and connection demands? Since YouTube does not allow you to set a default quality for videos, this plugin aims to eliminate the need of manually selecting a higher quality for each video. Simply set your default quality and let the plugin take care of the rest.
एक्सटेंशन की मूल जानकारी
नाम | YTQ - YouTube Quality Selector |
ID | koekelbfakgefdogcfjjaimakbecekbj |
आधिकारिक URL | https://chromewebstore.google.com/detail/ytq-youtube-quality-selec/koekelbfakgefdogcfjjaimakbecekbj |
विवरण | A chrome plugin to automatically set the quality of YouTube videos |
फ़ाइल का आकार | 207 KB |
स्थापना संख्या | 228 |
वर्तमान संस्करण | 2 |
अंतिम अपडेट | 2023-07-06 |
प्रकाशन तिथि | 2021-09-02 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | https://www.codemic.co.za |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YTQ - YouTube Quality Selector", "description": "A chrome plugin to automatically set the quality of YouTube videos", "version": "2", "browser_action": { "default_title": "YTQ - YouTube Quality Selector", "default_icon": "icons\/logo.png", "default_popup": "YTQ.html" }, "icons": { "16": "icons\/logo16.png", "48": "icons\/logo.png", "128": "icons\/logo128.png" }, "permissions": [ "activeTab", "storage", "http:\/\/youtube.com\/*", "https:\/\/youtube.com\/*", "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*" ], "background": { "scripts": [ "popup.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/youtube.com\/*", "https:\/\/youtube.com\/*", "http:\/\/*.youtube.com\/*", "https:\/\/*.youtube.com\/*" ], "js": [ "popup.js", "YTQ.js" ] } ], "manifest_version": 2 } |