YouTube Blur
Avoid distractions on YouTube by blurring the thumbnails on the homepage
Τι είναι το YouTube Blur;
Το YouTube Blur είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον codedbyleo, και η κύρια λειτουργία του είναι "Avoid distractions on YouTube by blurring the thumbnails on the homepage".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης YouTube Blur
Λήψη αρχείων επέκτασης YouTube Blur σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | YouTube Blur |
ID | kdokcakcfbknongpohpabejbmoocddhh |
Επίσημο URL | https://chromewebstore.google.com/detail/youtube-blur/kdokcakcfbknongpohpabejbmoocddhh |
Περιγραφή | Avoid distractions on YouTube by blurring the thumbnails on the homepage |
Μέγεθος Αρχείου | 17.86 KB |
Αριθμός Εγκαταστάσεων | 569 |
Τρέχουσα Έκδοση | 1.0.0 |
Τελευταία Ενημέρωση | 2021-09-27 |
Ημερομηνία Δημοσίευσης | 2021-09-24 |
Αξιολόγηση | 4.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | codedbyleo |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" ] } ] } |