YouTube Blur
Avoid distractions on YouTube by blurring the thumbnails on the homepage
Qu'est-ce que YouTube Blur ?
YouTube Blur est une extension Chrome développée par codedbyleo, et sa fonction principale est "Avoid distractions on YouTube by blurring the thumbnails on the homepage".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension YouTube Blur
Téléchargez les fichiers d'extension YouTube Blur 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
With YouTube Blur you'll be able to focus on your work, education or creativity without getting distracted by YouTube's recommended videos in the homepage. Simply install the extension on chrome, toggle on the YouTube Blur switch, and prepare for a new level of focus! PRIVACY I do not read, examine or track your browser history or any other personal information. The only permissions required for are "tabs" to insert the functionality and "storage" to store your settings.
Informations de Base sur l'Extension
Nom | YouTube Blur |
ID | kdokcakcfbknongpohpabejbmoocddhh |
URL Officiel | https://chromewebstore.google.com/detail/youtube-blur/kdokcakcfbknongpohpabejbmoocddhh |
Description | Avoid distractions on YouTube by blurring the thumbnails on the homepage |
Taille du Fichier | 17.86 KB |
Nombre d'Installations | 569 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2021-09-27 |
Date de Publication | 2021-09-24 |
Évaluation | 4.00/5 Total 2 Évaluations |
Développeur | codedbyleo |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Blur", "description": "Avoid distractions on YouTube by blurring the thumbnails on the homepage", "manifest_version": 3, "version": "1.0.0", "icons": { "128": "icon_128.png" }, "action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/" ], "js": [ "blur.js" ] } ] } |