YouTube Quality Adjuster

Automatically adjusts the quality of YouTube Videos

Vad är YouTube Quality Adjuster?

YouTube Quality Adjuster är en Chrome-tillägg utvecklad av hiatamaworkshop, och dess huvudfunktion är "Automatically adjusts the quality of YouTube Videos".

Tilläggsskärmbilder

screenshot

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

Ladda ner YouTube Quality Adjuster-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

                        Adjust the quality of YouTube Videos automatically.

Only available in the original YouTube page, not the embedded videos.

no adds or any kind of network communication.

Updated Sep/2023                    

Grundläggande Information om Tillägg

Namn YouTube Quality Adjuster YouTube Quality Adjuster
ID ohjehldapgfhlmekcencdhikpdjmjpkk
Officiell webbadress https://chromewebstore.google.com/detail/youtube-quality-adjuster/ohjehldapgfhlmekcencdhikpdjmjpkk
Beskrivning Automatically adjusts the quality of YouTube Videos
Filstorlek 27.98 KB
Antal Installationer 1,445
Aktuell Version 2.1
Senast Uppdaterad 2023-10-04
Publiceringsdatum 2021-02-09
Betyg 3.92/5 Totalt 12 Betyg
Utvecklare hiatamaworkshop
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Quality Adjuster",
    "version": "2.1",
    "manifest_version": 3,
    "description": "Automatically adjusts the quality of YouTube Videos",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "action": {
        "default_popup": "youtube_quality.html",
        "default_icon": "icons\/icon16.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "qualityControl.js"
            ],
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "declarativeContent"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "host_permissions": [
        "https:\/\/*.youtube.com\/*"
    ]
}