BlurImage

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

BlurImage क्या है?

BlurImage dliu द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will blur all images in img tags on the page. Can whitelist by domains"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में BlurImage एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम BlurImage BlurImage
ID obgehdjfdokhbmbgdkaklcphepdhombh
आधिकारिक URL https://chromewebstore.google.com/detail/blurimage/obgehdjfdokhbmbgdkaklcphepdhombh
विवरण This extension will blur all images in img tags on the page. Can whitelist by domains
फ़ाइल का आकार 24.03 KB
स्थापना संख्या 122
वर्तमान संस्करण 0.0.8
अंतिम अपडेट 2024-02-13
प्रकाशन तिथि 2024-02-05
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर dliu
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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
}