Shift Youtube Optimizer
Chrome extension to hide/reduce the number of videos shown on YouTube.
What is Shift Youtube Optimizer?
Shift Youtube Optimizer is a Chrome extension developed by alexander.foster.mcculloch, and its main feature is "Chrome extension to hide/reduce the number of videos shown on YouTube.".
Extension Screenshots
Download Shift Youtube Optimizer Extension CRX File
Download Shift Youtube Optimizer 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
As the summary above states, this is a simple open-source chrome extension written in vanilla JavaScript, CSS and of course, HTML, using the Chrome Extension format, although shortly there should be an extension for Firefox as well. I noticed a number of other Chrome Extensions that were similar but they all only worked on the homepage, so I decided to make one that worked all over the site, and didn't need the mouse to scroll before it would activate. I spent a few days looking into how YouTube sets up the front-end of their website, so if anyone has any questions, feel free to shoot me a message. Also, if anyone would like to check out the source-code, or contribute to make it ever better (or fix bugs), check out the github page for this chrome extension : https://github.com/robertfrosty/shift-yt-optimizer .
Extension Basic Information
Name | Shift Youtube Optimizer |
ID | hfndjegliabemhpfcdecfehlipjdnecp |
Official URL | https://chromewebstore.google.com/detail/shift-youtube-optimizer/hfndjegliabemhpfcdecfehlipjdnecp |
Description | Chrome extension to hide/reduce the number of videos shown on YouTube. |
File Size | 1.74 MB |
Installation Count | 23 |
Current Version | 1.0.3 |
Last Updated | 2021-10-23 |
Publish Date | 2021-09-24 |
Rating | 4.75/5 Total 4 Ratings |
Developer | alexander.foster.mcculloch |
[email protected] | |
Payment Type | free |
Help Page URL | https://github.com/robertfrosty/shift-yt-optimizer |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Shift Youtube Optimizer", "description": "Chrome extension to hide\/reduce the number of videos shown on YouTube.", "version": "1.0.3", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "observe.js" ] } ], "action": { "default_popup": ".\/ui\/options.html", "default_icon": { "16": ".\/ui\/icons\/icon.png", "32": ".\/ui\/icons\/icon2x.png", "48": ".\/ui\/icons\/icon3x.png", "128": ".\/ui\/icons\/icon128px.png" } }, "icons": { "16": ".\/ui\/icons\/icon.png", "32": ".\/ui\/icons\/icon2x.png", "48": ".\/ui\/icons\/icon3x.png", "128": ".\/ui\/icons\/icon128px.png" }, "permissions": [ "activeTab", "scripting", "storage" ] } |