Focused Youtube
Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube
Wat is Focused Youtube?
Focused Youtube is een Chrome-extensie ontwikkeld door makaroni4, en de belangrijkste functie is "Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube".
Extensie Screenshots
Download het CRX-bestand van de extensie Focused Youtube
Download Focused Youtube-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Focused Youtube |
ID | nfghbmabdoakhobmimnjkamfdnpfammn |
Officiële URL | https://chromewebstore.google.com/detail/focused-youtube/nfghbmabdoakhobmimnjkamfdnpfammn |
Beschrijving | Open source extension that removes comments/recommendations from Youtube: https://github.com/makaroni4/focused_youtube |
Bestandsgrootte | 170 KB |
Aantal Installaties | 4,232 |
Huidige Versie | 1.12 |
Laatst Bijgewerkt | 2024-01-27 |
Publicatiedatum | 2019-01-06 |
Beoordeling | 4.88/5 Totaal 72 Beoordelingen |
Ontwikkelaar | makaroni4 |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/makaroni4/focused_youtube |
Help Pagina-URL | https://github.com/makaroni4/focused_youtube/issues |
Ondersteunde Talen | 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\/*" ] } ] } |