BlurImage

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

Wat is BlurImage?

BlurImage is een Chrome-extensie ontwikkeld door dliu, en de belangrijkste functie is "This extension will blur all images in img tags on the page. Can whitelist by domains".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie BlurImage

Download BlurImage-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam BlurImage BlurImage
ID obgehdjfdokhbmbgdkaklcphepdhombh
Officiële URL https://chromewebstore.google.com/detail/blurimage/obgehdjfdokhbmbgdkaklcphepdhombh
Beschrijving This extension will blur all images in img tags on the page. Can whitelist by domains
Bestandsgrootte 24.03 KB
Aantal Installaties 122
Huidige Versie 0.0.8
Laatst Bijgewerkt 2024-02-13
Publicatiedatum 2024-02-05
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar dliu
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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
}