YTQ - YouTube Quality Selector
A chrome plugin to automatically set the quality of YouTube videos
Co to jest YTQ - YouTube Quality Selector?
YTQ - YouTube Quality Selector to rozszerzenie Chrome opracowane przez https://www.codemic.co.za, a jego główną funkcją jest „A chrome plugin to automatically set the quality of YouTube videos”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia YTQ - YouTube Quality Selector
Pobierz pliki rozszerzeń YTQ - YouTube Quality Selector w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | YTQ - YouTube Quality Selector |
ID | koekelbfakgefdogcfjjaimakbecekbj |
Oficjalny URL | https://chromewebstore.google.com/detail/ytq-youtube-quality-selec/koekelbfakgefdogcfjjaimakbecekbj |
Opis | A chrome plugin to automatically set the quality of YouTube videos |
Rozmiar pliku | 207 KB |
Liczba instalacji | 228 |
Aktualna Wersja | 2 |
Ostatnia Aktualizacja | 2023-07-06 |
Data Publikacji | 2021-09-02 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | https://www.codemic.co.za |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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 } |