YTQ - YouTube Quality Selector
A chrome plugin to automatically set the quality of YouTube videos
O que é YTQ - YouTube Quality Selector?
YTQ - YouTube Quality Selector é uma extensão do Chrome desenvolvida por https://www.codemic.co.za, e sua principal característica é "A chrome plugin to automatically set the quality of YouTube videos".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YTQ - YouTube Quality Selector
Baixe arquivos de extensão YTQ - YouTube Quality Selector no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | YTQ - YouTube Quality Selector |
ID | koekelbfakgefdogcfjjaimakbecekbj |
URL Oficial | https://chromewebstore.google.com/detail/ytq-youtube-quality-selec/koekelbfakgefdogcfjjaimakbecekbj |
Descrição | A chrome plugin to automatically set the quality of YouTube videos |
Tamanho do Arquivo | 207 KB |
Contagem de Instalações | 228 |
Versão Atual | 2 |
Última Atualização | 2023-07-06 |
Data de Publicação | 2021-09-02 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | https://www.codemic.co.za |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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 } |