YTQ - YouTube Quality Selector
A chrome plugin to automatically set the quality of YouTube videos
Was ist YTQ - YouTube Quality Selector?
YTQ - YouTube Quality Selector ist eine Chrome-Erweiterung, die von https://www.codemic.co.za entwickelt wurde, und ihr Hauptmerkmal ist "A chrome plugin to automatically set the quality of YouTube videos".
Erweiterungsscreenshots
YTQ - YouTube Quality Selector-Erweiterungs-CRX-Datei herunterladen
Laden Sie YTQ - YouTube Quality Selector-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        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.                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | koekelbfakgefdogcfjjaimakbecekbj | 
| Offizielle URL | https://chromewebstore.google.com/detail/ytq-youtube-quality-selec/koekelbfakgefdogcfjjaimakbecekbj | 
| Beschreibung | A chrome plugin to automatically set the quality of YouTube videos | 
| Dateigröße | 207 KB | 
| Installationsanzahl | 228 | 
| Aktuelle Version | 2 | 
| Letztes Update | 2023-07-06 | 
| Veröffentlichungsdatum | 2021-09-02 | 
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen | 
| Entwickler | https://www.codemic.co.za | 
| [email protected] | |
| Zahlungsart | free | 
| Unterstützte Sprachen | 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
}  |  |