YTQ - YouTube Quality Selector

A chrome plugin to automatically set the quality of YouTube videos

Hvad er YTQ - YouTube Quality Selector?

YTQ - YouTube Quality Selector er en Chrome-udvidelse udviklet af https://www.codemic.co.za, og dens hovedfunktion er "A chrome plugin to automatically set the quality of YouTube videos".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download YTQ - YouTube Quality Selector-udvidelses-CRX-fil

Download YTQ - YouTube Quality Selector-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn YTQ - YouTube Quality Selector YTQ - YouTube Quality Selector
ID koekelbfakgefdogcfjjaimakbecekbj
Officiel URL https://chromewebstore.google.com/detail/ytq-youtube-quality-selec/koekelbfakgefdogcfjjaimakbecekbj
Beskrivelse A chrome plugin to automatically set the quality of YouTube videos
Filstørrelse 207 KB
Antal Installationer 228
Nuværende Version 2
Senest Opdateret 2023-07-06
Udgivelsesdato 2021-09-02
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler https://www.codemic.co.za
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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
}