CleanTube
YouTube with less clutter.
Qu'est-ce que CleanTube ?
CleanTube est une extension Chrome développée par elliotwaite, et sa fonction principale est "YouTube with less clutter.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension CleanTube
Téléchargez les fichiers d'extension CleanTube au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | CleanTube |
ID | kanfjhdeebkfgkbmnfknhejpadhlmiab |
URL Officiel | https://chromewebstore.google.com/detail/cleantube/kanfjhdeebkfgkbmnfknhejpadhlmiab |
Description | YouTube with less clutter. |
Taille du Fichier | 8.85 KB |
Nombre d'Installations | 1,633 |
Version Actuelle | 0.4 |
Dernière Mise à Jour | 2023-08-01 |
Date de Publication | 2021-06-29 |
Évaluation | 3.80/5 Total 5 Évaluations |
Développeur | elliotwaite |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/elliotwaite/cleantube |
URL de la Page d'Aide | https://github.com/elliotwaite/cleantube |
Langues Prises en Charge | 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" ] } |