Youtube Auto Quality
Quality settings on Youtube videos will be defaulted to the highest quality possible.
Vad är Youtube Auto Quality?
Youtube Auto Quality är en Chrome-tillägg utvecklad av jamesw8dev, och dess huvudfunktion är "Quality settings on Youtube videos will be defaulted to the highest quality possible.".
Tilläggsskärmbilder
Ladda ner Youtube Auto Quality-förlängningens CRX-fil
Ladda ner Youtube Auto Quality-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
YouTube's auto quality feature doesn't always use the highest quality supported. This extension automatically sets the quality to the best option per video. Release Log --- v0.2 - Fix bug when entering from youtube.com v0.1 - Initial release Disclaimer -- YouTube™ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.
Grundläggande Information om Tillägg
Namn | Youtube Auto Quality |
ID | dggjpamoacejckpnhgnlmajommekebho |
Officiell webbadress | https://chromewebstore.google.com/detail/youtube-auto-quality/dggjpamoacejckpnhgnlmajommekebho |
Beskrivning | Quality settings on Youtube videos will be defaulted to the highest quality possible. |
Filstorlek | 26.3 KB |
Antal Installationer | 21 |
Aktuell Version | 0.2 |
Senast Uppdaterad | 2021-10-15 |
Publiceringsdatum | 2021-10-06 |
Utvecklare | jamesw8dev |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Auto Quality", "description": "Quality settings on Youtube videos will be defaulted to the highest quality possible.", "version": "0.2", "manifest_version": 3, "icons": { "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "web_accessible_resources": [ { "resources": [ "\/js\/setQuality.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "content-script.js" ], "run_at": "document_start", "all_frames": true } ] } |