YTQ - YouTube Quality Selector

A chrome plugin to automatically set the quality of YouTube videos

Wat is YTQ - YouTube Quality Selector?

YTQ - YouTube Quality Selector is een Chrome-extensie ontwikkeld door https://www.codemic.co.za, en de belangrijkste functie is "A chrome plugin to automatically set the quality of YouTube videos".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie YTQ - YouTube Quality Selector

Download YTQ - YouTube Quality Selector-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam YTQ - YouTube Quality Selector YTQ - YouTube Quality Selector
ID koekelbfakgefdogcfjjaimakbecekbj
Officiële URL https://chromewebstore.google.com/detail/ytq-youtube-quality-selec/koekelbfakgefdogcfjjaimakbecekbj
Beschrijving A chrome plugin to automatically set the quality of YouTube videos
Bestandsgrootte 207 KB
Aantal Installaties 228
Huidige Versie 2
Laatst Bijgewerkt 2023-07-06
Publicatiedatum 2021-09-02
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar https://www.codemic.co.za
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
}