Hide Youtube Watched Videos
This extension will hide watched youtube videos from the subscriptions page.
Qu'est-ce que Hide Youtube Watched Videos ?
Hide Youtube Watched Videos est une extension Chrome développée par Matt0x5b, et sa fonction principale est "This extension will hide watched youtube videos from the subscriptions page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Hide Youtube Watched Videos
Téléchargez les fichiers d'extension Hide Youtube Watched Videos 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
Sick of finding which videos you haven't already watched within your subscription feed? This extension will automatically hide watched videos so you can focus on enjoying the new content. Right click the extension icon for options: this can be used to adjust how much of the video must be watched before it is considered "Watched". Note: Red Icon means the extension is disabled, Green is enabled. Click the icon to enable/disable.
Informations de Base sur l'Extension
Nom | Hide Youtube Watched Videos |
ID | ekcdnnkolgkikkhbbjcabcjdibfbafbl |
URL Officiel | https://chromewebstore.google.com/detail/hide-youtube-watched-vide/ekcdnnkolgkikkhbbjcabcjdibfbafbl |
Description | This extension will hide watched youtube videos from the subscriptions page. |
Taille du Fichier | 162 KB |
Nombre d'Installations | 2,741 |
Version Actuelle | 1.7.1 |
Dernière Mise à Jour | 2023-08-28 |
Date de Publication | 2020-03-11 |
Évaluation | 3.20/5 Total 50 Évaluations |
Développeur | Matt0x5b |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/matt0x5B/HideYoutubeWatchedVideos-Issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Hide Youtube Watched Videos", "description": "This extension will hide watched youtube videos from the subscriptions page.", "version": "1.7.1", "action": { "default_icon": "images\/icon128.png" }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "options_page": "src\/options.html", "background": { "service_worker": "script.js" }, "permissions": [ "scripting", "storage", "tabs", "webNavigation" ], "host_permissions": [ "*:\/\/*.youtube.com\/" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "css": [ "src\/hideYoutube.css" ] } ] } |