CleanTube
YouTube with less clutter.
Wat is CleanTube?
CleanTube is een Chrome-extensie ontwikkeld door elliotwaite, en de belangrijkste functie is "YouTube with less clutter.".
Extensie Screenshots
Download het CRX-bestand van de extensie CleanTube
Download CleanTube-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 extension hides the following YouTube elements: • The row of recommended videos that appear when a video is paused. • The wall of recommended videos that appear at the end of a video. • Channel watermark logos that appear in the bottom right of videos. • The "Watch later" and "Add to queue" icon buttons that appear over the top right of thumbnails when they are hovered over. This extension is open source on GitHub. If you find any bugs or have any suggestions, please open an issue here: https://github.com/elliotwaite/cleantube Thanks. Enjoy!
Basisinformatie over de Extensie
Naam | CleanTube |
ID | kanfjhdeebkfgkbmnfknhejpadhlmiab |
Officiële URL | https://chromewebstore.google.com/detail/cleantube/kanfjhdeebkfgkbmnfknhejpadhlmiab |
Beschrijving | YouTube with less clutter. |
Bestandsgrootte | 8.85 KB |
Aantal Installaties | 1,633 |
Huidige Versie | 0.4 |
Laatst Bijgewerkt | 2023-08-01 |
Publicatiedatum | 2021-06-29 |
Beoordeling | 3.80/5 Totaal 5 Beoordelingen |
Ontwikkelaar | elliotwaite |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/elliotwaite/cleantube |
Help Pagina-URL | https://github.com/elliotwaite/cleantube |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CleanTube", "version": "0.4", "description": "YouTube with less clutter.", "author": "Elliot Waite", "icons": { "128": "icon128.png" }, "browser_action": { "default_icon": "icon128.png", "default_title": "Options", "default_popup": "options.html" }, "options_ui": { "page": "options.html", "chrome_style": false }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtube-nocookie.com\/*" ], "js": [ "content.js" ], "all_frames": true } ], "permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.youtube-nocookie.com\/*", "storage" ] } |