BlurImage

This extension will blur all images in img tags on the page. Can whitelist by domains

Co to jest BlurImage?

BlurImage to rozszerzenie Chrome opracowane przez dliu, a jego główną funkcją jest „This extension will blur all images in img tags on the page. Can whitelist by domains”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia BlurImage

Pobierz pliki rozszerzeń BlurImage 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

                        Blur images from web pages

The Blur Images extension will blur out any images and videos. 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 pages. Can whitelist pages.                    

Podstawowe informacje o rozszerzeniu

Nazwa BlurImage BlurImage
ID obgehdjfdokhbmbgdkaklcphepdhombh
Oficjalny URL https://chromewebstore.google.com/detail/blurimage/obgehdjfdokhbmbgdkaklcphepdhombh
Opis This extension will blur all images in img tags on the page. Can whitelist by domains
Rozmiar pliku 24.03 KB
Liczba instalacji 122
Aktualna Wersja 0.0.8
Ostatnia Aktualizacja 2024-02-13
Data Publikacji 2024-02-05
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper dliu
E-mail [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": "BlurImage",
    "description": "This extension will blur all images in img tags on the page. Can whitelist by domains",
    "version": "0.0.8",
    "icons": {
        "16": "assets\/icon-16.png",
        "48": "assets\/icon-48.png",
        "128": "assets\/icon-128.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "action": {
        "default_icon": {
            "16": "assets\/icon-16.png",
            "48": "assets\/icon-48.png",
            "128": "assets\/icon-128.png"
        },
        "default_title": "BlurImage",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "filter.js"
            ],
            "run_at": "document_start"
        }
    ],
    "manifest_version": 3
}