Image Blur Extension

A Chrome extension to blur images on web pages

Qu'est-ce que Image Blur Extension ?

Image Blur Extension est une extension Chrome développée par manojsilag, et sa fonction principale est "A Chrome extension to blur images on web pages".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Image Blur Extension

Téléchargez les fichiers d'extension Image Blur Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Image Blur Extension Image Blur Extension
ID njjgcapodcfiiofppomncilmenhgdmmc
URL Officiel https://chromewebstore.google.com/detail/image-blur-extension/njjgcapodcfiiofppomncilmenhgdmmc
Description A Chrome extension to blur images on web pages
Taille du Fichier 42.1 KB
Nombre d'Installations 78
Version Actuelle 1.0
Dernière Mise à Jour 2023-10-08
Date de Publication 2023-10-08
Évaluation 5.00/5 Total 1 Évaluations
Développeur manojsilag
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://manojsilag.github.io/image_blur_website/
Langues Prises en Charge 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"
    }
}