Simple Auto HD (Open Source)
Simple Auto HD quality selector for YouTube. Up to 8k/4k (60fps/50fps/48fps/30fps) supported. Theater mode.
What is Simple Auto HD (Open Source)?
Simple Auto HD (Open Source) is a Chrome extension developed by sameernyaupane, and its main feature is "Simple Auto HD quality selector for YouTube. Up to 8k/4k (60fps/50fps/48fps/30fps) supported. Theater mode.".
Extension Screenshots
Download Simple Auto HD (Open Source) Extension CRX File
Download Simple Auto HD (Open Source) extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
✔ Lightweight and efficient ✔ Fully open source: https://github.com/sameernyaupane/simple-auto-hd ✔ No tracking, or any user data collection. ✔ Supports up to 8k quality and (60fps/50fps/48fps/30fps) modes ✔ Option to Select best available quality automatically
Extension Basic Information
Name | Simple Auto HD (Open Source) |
ID | jnofiabkigekemighcdaejlpgdhmbaog |
Official URL | https://chromewebstore.google.com/detail/simple-auto-hd-open-sourc/jnofiabkigekemighcdaejlpgdhmbaog |
Description | Simple Auto HD quality selector for YouTube. Up to 8k/4k (60fps/50fps/48fps/30fps) supported. Theater mode. |
File Size | 51.88 KB |
Installation Count | 1,832 |
Current Version | 2.0.5 |
Last Updated | 2023-06-13 |
Publish Date | 2019-12-19 |
Rating | 4.49/5 Total 41 Ratings |
Developer | sameernyaupane |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/sameernyaupane/simple-auto-hd |
Help Page URL | https://github.com/sameernyaupane/simple-auto-hd |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Simple Auto HD (Open Source)", "description": "Simple Auto HD quality selector for YouTube. Up to 8k\/4k (60fps\/50fps\/48fps\/30fps) supported. Theater mode.", "version": "2.0.5", "author": "Sameer Nyaupane", "icons": { "16": "sahd-16.png", "48": "sahd-48.png", "128": "sahd-128.png" }, "action": { "default_title": "Simple Auto HD", "default_icon": "sahd-16.png", "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "exclude_globs": [ "*\/embed\/*", "*\/tv#\/*", "*\/tv\/*" ], "all_frames": true, "js": [ "content.js" ], "run_at": "document_start" } ], "permissions": [ "storage" ], "host_permissions": [ "*:\/\/www.youtube.com\/*" ] } |