YTQ - YouTube Quality Selector
A chrome plugin to automatically set the quality of YouTube videos
Qu'est-ce que YTQ - YouTube Quality Selector ?
YTQ - YouTube Quality Selector est une extension Chrome développée par https://www.codemic.co.za, et sa fonction principale est "A chrome plugin to automatically set the quality of YouTube videos".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YTQ - YouTube Quality Selector
Téléchargez les fichiers d'extension YTQ - YouTube Quality Selector au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | YTQ - YouTube Quality Selector |
ID | koekelbfakgefdogcfjjaimakbecekbj |
URL Officiel | https://chromewebstore.google.com/detail/ytq-youtube-quality-selec/koekelbfakgefdogcfjjaimakbecekbj |
Description | A chrome plugin to automatically set the quality of YouTube videos |
Taille du Fichier | 207 KB |
Nombre d'Installations | 228 |
Version Actuelle | 2 |
Dernière Mise à Jour | 2023-07-06 |
Date de Publication | 2021-09-02 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | https://www.codemic.co.za |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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 } |