Focused Youtube
Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube
What is Focused Youtube?
Focused Youtube is a Chrome extension developed by makaroni4, and its main feature is "Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube".
Extension Screenshots
Download Focused Youtube Extension CRX File
Download Focused Youtube 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
This is an open-source extension that changes homepage of Youtube (only search bar) and drops recommendations/comments from other pages. Extension requires access to Youtube website to change its outlook. Extension icon opens a popup with an option to show/hide the comments section of a video (to check timestamps in comments, for example). Enjoy <3 Important: the extension doesn't collect any data about Youtube usage.
Extension Basic Information
Name | Focused Youtube |
ID | nfghbmabdoakhobmimnjkamfdnpfammn |
Official URL | https://chromewebstore.google.com/detail/focused-youtube/nfghbmabdoakhobmimnjkamfdnpfammn |
Description | Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube |
File Size | 170 KB |
Installation Count | 4,232 |
Current Version | 1.12 |
Last Updated | 2024-01-27 |
Publish Date | 2019-01-06 |
Rating | 4.88/5 Total 72 Ratings |
Developer | makaroni4 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/makaroni4/focused_youtube |
Help Page URL | https://github.com/makaroni4/focused_youtube/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Focused Youtube", "description": "Open source extension that removes comments\/recommendations from Youtube: https:\/\/github.com\/makaroni4\/focused_youtube", "version": "1.12", "author": "Anatoli Makarevich", "icons": { "128": "extension_icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/m.youtube.com\/*" ], "js": [ "assets\/extension.js" ], "css": [ "assets\/extension.css" ], "run_at": "document_end", "all_frames": true } ], "action": { "default_popup": "popup.html" }, "host_permissions": [ "https:\/\/www.youtube.com\/*", "https:\/\/m.youtube.com\/*" ], "permissions": [ "storage" ], "web_accessible_resources": [ { "resources": [ "fonts\/Roboto-Regular.ttf", "assets\/popup.js", "assets\/popup.css", "images\/search_icon.svg", "images\/youtube_logo.png", "images\/search_icon_dark.svg", "images\/youtube_logo_dark.png", "images\/extension_icon.png" ], "matches": [ "https:\/\/www.youtube.com\/*", "https:\/\/m.youtube.com\/*" ] } ] } |