Blur Images

Blur images from chats

Что такое Blur Images?

Blur Images - это расширение Chrome, разработанное leonardodesantos, и его основная функция - "Blur images from chats".

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

screenshot
screenshot

Скачать файл CRX расширения Blur Images

Скачайте файлы расширений Blur Images в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        The Blur Images extension will blur out any sent or received images and videos until you select and click/hover them. This extension is useful for when you are at work or any other place where you might not want everyone around you to see your images and videos from your private conversations.                    

Основная информация о расширении

Название Blur Images Blur Images
ID jfgofbkegonfgfianjnmbiekmgahmbfl
Официальный URL https://chromewebstore.google.com/detail/blur-images/jfgofbkegonfgfianjnmbiekmgahmbfl
Описание Blur images from chats
Размер файла 122 KB
Количество установок 2,441
Текущая Версия 5.4
Последнее Обновление 2020-07-13
Дата публикации 2020-05-24
Рейтинг 4.44/5 Всего 25 оценок
Разработчик leonardodesantos
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Blur Images",
    "short_name": "Blur Images",
    "description": "Blur images from chats",
    "version": "5.4",
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "Blur Images"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "css": [
                "main.css"
            ],
            "js": [
                "main.js"
            ],
            "matches": [
                "http:\/\/web.whatsapp.com\/",
                "https:\/\/web.whatsapp.com\/"
            ]
        }
    ],
    "permissions": [
        "https:\/\/web.whatsapp.com\/"
    ]
}