YTQ - YouTube Quality Selector
A chrome plugin to automatically set the quality of YouTube videos
What is YTQ - YouTube Quality Selector?
YTQ - YouTube Quality Selector is a Chrome extension developed by https://www.codemic.co.za, and its main feature is "A chrome plugin to automatically set the quality of YouTube videos".
Extension Screenshots
Download YTQ - YouTube Quality Selector Extension CRX File
Download YTQ - YouTube Quality Selector 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
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.
Extension Basic Information
Name | YTQ - YouTube Quality Selector |
ID | koekelbfakgefdogcfjjaimakbecekbj |
Official URL | https://chromewebstore.google.com/detail/ytq-youtube-quality-selec/koekelbfakgefdogcfjjaimakbecekbj |
Description | A chrome plugin to automatically set the quality of YouTube videos |
File Size | 207 KB |
Installation Count | 228 |
Current Version | 2 |
Last Updated | 2023-07-06 |
Publish Date | 2021-09-02 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://www.codemic.co.za |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |