Image Blur Extension

A Chrome extension to blur images on web pages

Что такое Image Blur Extension?

Image Blur Extension - это расширение Chrome, разработанное manojsilag, и его основная функция - "A Chrome extension to blur images on web pages".

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

screenshot
screenshot

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

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

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

                        Are you concerned about your online privacy and tired of images on websites invading your personal space? Introducing Image Blur, your ultimate solution for taking control of your online visual experience.

Image Blur seamlessly integrates with your Chrome browser to blur all images on the websites you visit. Whether you're on social media, news sites, or any other platform

We understand that everyone has different preferences. That's why Image Blur allows you to customize the blur intensity. Choose the level of blur that suits your comfort level, from subtle to complete obscurity.

You're in control. Easily toggle the extension on and off with a single click. When you want to enjoy high-resolution images, simply turn off Image Blur, and when you're concerned, turn it back on.                    

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

Название Image Blur Extension Image Blur Extension
ID njjgcapodcfiiofppomncilmenhgdmmc
Официальный URL https://chromewebstore.google.com/detail/image-blur-extension/njjgcapodcfiiofppomncilmenhgdmmc
Описание A Chrome extension to blur images on web pages
Размер файла 42.1 KB
Количество установок 78
Текущая Версия 1.0
Последнее Обновление 2023-10-08
Дата публикации 2023-10-08
Рейтинг 5.00/5 Всего 1 оценок
Разработчик manojsilag
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://manojsilag.github.io/image_blur_website/
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Image Blur Extension",
    "version": "1.0",
    "description": "A Chrome extension to blur images on web pages",
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "action": {
        "default_popup": "options.html",
        "default_icon": {
            "16": "icon.png",
            "48": "icon.png",
            "128": "icon.png"
        },
        "default_title": "Image Blur Extension"
    }
}