YouTube Quality Adjuster
Automatically adjusts the quality of YouTube Videos
Wat is YouTube Quality Adjuster?
YouTube Quality Adjuster is een Chrome-extensie ontwikkeld door hiatamaworkshop, en de belangrijkste functie is "Automatically adjusts the quality of YouTube Videos".
Extensie Screenshots
Download het CRX-bestand van de extensie YouTube Quality Adjuster
Download YouTube Quality Adjuster-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
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
Basisinformatie over de Extensie
Naam | YouTube Quality Adjuster |
ID | ohjehldapgfhlmekcencdhikpdjmjpkk |
Officiële URL | https://chromewebstore.google.com/detail/youtube-quality-adjuster/ohjehldapgfhlmekcencdhikpdjmjpkk |
Beschrijving | Automatically adjusts the quality of YouTube Videos |
Bestandsgrootte | 27.98 KB |
Aantal Installaties | 1,445 |
Huidige Versie | 2.1 |
Laatst Bijgewerkt | 2023-10-04 |
Publicatiedatum | 2021-02-09 |
Beoordeling | 3.92/5 Totaal 12 Beoordelingen |
Ontwikkelaar | hiatamaworkshop |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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\/*" ] } |