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".

Снимки экрана расширения

screenshot
screenshot

Скачать файл 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 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"
            ]
        }
    ]
}