A browser extension that sets the quality of YouTube videos according to the user's preference, based on the video's FPS. Available for:
- Google Chrome
- Mozilla Firefox 90+
- Microsoft Edge
- Opera
- Safari - maintained by carlosjeurissen
Made by avi12
Powered by Plasmo
Due to the way the browsers handle extensions, when an extension receives an update, content scripts in already-open web pages cannot use the Storage API, until the user reloads those web pages. In the context of this extension, it means that when the extension receives an update, as long as the user doesn't reload YouTube web pages, the extension cannot get the data regarding the user-preferred qualities.
To provide a smooth user experience, I decided to use the last qualities that were fetched.
This solution is not perfect, since if the user wants to update the quality of the videos in the currently-open web pages using the popup page, it will not update dynamically. However, this is the only viable solution, as the alternative would be to auto-reload web pages, which would result in a bad user experience.
You can translate the extension to your own language by filling this form. Filling will grant you access to a Google Sheets spreadsheet via email, in which you can contribute your translations.
pnpm i
pnpm dev
pnpm build:firefox
pnpm run-chromium
pnpm run-chromium:rtl
pnpm run-edge:windows
pnpm run-opera:windows
pnpm run-firefox
- Install Android Studio on your operating system
- Create an AVD (Android Virtual Device)
- For a phone emulator, choose one that has Play Store preinstalled
- For a tablet emulator, follow these steps after creating it to have Play Store preinstalled
- Run the emulator:
emulator @DEVICE_NAME
- Download Kiwi Browser. I recommend creating a Google account specifically to be used with the emulator
-
- If you're using a single emulator while on Windows, you can run:
pnpm build-pack:test-push
- If you're testing on multiple emulators, and you're on PowerShell:
First find the emulator ID:
Then:
adb devices
where you replacepnpm build-pack:test; ` $zip = "chrome-mv3-prod.zip"; ` $destAndroid = "/storage/emulated/0/Download/$zip"; ` adb -s ID shell rm $destAndroid; ` adb -s ID push "build/$zip" $destAndroid;
ID
with the emulator ID
- If you're using a single emulator while on Windows, you can run:
- Select the ZIP in the Download folder
- To reload, you must first remove the extension and then repeat steps 5-8
After pnpm dev
:
- Chromium-based browsers
- Open the extensions page
- Enable "Developer mode"
- Open
youtube-auto-hd/build
on your file system - Drag-drop
chrome-mv3-dev
onto the extensions page
- Firefox:
- Follow this guide
- In the file system window, select
youtube-auto-hd/build/firefox-mv2-dev/manifest.json
pnpm build-pack
pnpm build-pack:firefox
Feel free to contribute! Keep in mind that the license I chose is GPL v3. If you want to fork, make sure to credit avi12 and link to this repository.