Blur Images

Blur images from chats

Co to jest Blur Images?

Blur Images to rozszerzenie Chrome opracowane przez leonardodesantos, a jego główną funkcją jest „Blur images from chats”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Blur Images

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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Blur Images Blur Images
ID jfgofbkegonfgfianjnmbiekmgahmbfl
Oficjalny URL https://chromewebstore.google.com/detail/blur-images/jfgofbkegonfgfianjnmbiekmgahmbfl
Opis Blur images from chats
Rozmiar pliku 122 KB
Liczba instalacji 2,441
Aktualna Wersja 5.4
Ostatnia Aktualizacja 2020-07-13
Data Publikacji 2020-05-24
Ocena 4.44/5 Łącznie 25 Oceny
Deweloper leonardodesantos
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/"
    ]
}