YouTube Blur
Avoid distractions on YouTube by blurring the thumbnails on the homepage
Co to jest YouTube Blur?
YouTube Blur to rozszerzenie Chrome opracowane przez codedbyleo, a jego główną funkcją jest „Avoid distractions on YouTube by blurring the thumbnails on the homepage”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia YouTube Blur
Pobierz pliki rozszerzeń YouTube Blur w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | YouTube Blur |
ID | kdokcakcfbknongpohpabejbmoocddhh |
Oficjalny URL | https://chromewebstore.google.com/detail/youtube-blur/kdokcakcfbknongpohpabejbmoocddhh |
Opis | Avoid distractions on YouTube by blurring the thumbnails on the homepage |
Rozmiar pliku | 17.86 KB |
Liczba instalacji | 569 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2021-09-27 |
Data Publikacji | 2021-09-24 |
Ocena | 4.00/5 Łącznie 2 Oceny |
Deweloper | codedbyleo |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } ] } |