YTQ - YouTube Quality Selector

A chrome plugin to automatically set the quality of YouTube videos

Vad är YTQ - YouTube Quality Selector?

YTQ - YouTube Quality Selector är en Chrome-tillägg utvecklad av https://www.codemic.co.za, och dess huvudfunktion är "A chrome plugin to automatically set the quality of YouTube videos".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner YTQ - YouTube Quality Selector-förlängningens CRX-fil

Ladda ner YTQ - YouTube Quality Selector-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn YTQ - YouTube Quality Selector YTQ - YouTube Quality Selector
ID koekelbfakgefdogcfjjaimakbecekbj
Officiell webbadress https://chromewebstore.google.com/detail/ytq-youtube-quality-selec/koekelbfakgefdogcfjjaimakbecekbj
Beskrivning A chrome plugin to automatically set the quality of YouTube videos
Filstorlek 207 KB
Antal Installationer 228
Aktuell Version 2
Senast Uppdaterad 2023-07-06
Publiceringsdatum 2021-09-02
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://www.codemic.co.za
E-post [email protected]
Betalningssätt free
Stödda Språk 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
}