Blur. The Image and Video blur extension

A browser extension that blurs all images on a page, for when you want to be discreet or don't want to look at certain images.

Blur. The Image and Video blur extension क्या है?

Blur. The Image and Video blur extension Fhazer Systems द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A browser extension that blurs all images on a page, for when you want to be discreet or don't want to look at certain images."।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        We’ve all been in a situation where we’ve ‘accidentally’ searched for something online and have seen images we wished we didn’t. No?

Then you’ve probably been in a situation where you’re browsing Facebook, Instagram etc. at work or at the library only to spot the person beside you peeping at your screen. No?

Or you’ve been in a situation where you just want to read an article without being bombarded by images and videos.

Well, now, you can. This add on blurs all images and videos on a page so you can focus on what matters. You can choose to view or not view content.

To view, just hover over an image and press ALT + K to unblur. Done? Just disable the extension from the toolbar or use ALT + L to disable/enable the extension

To see or not to see? That is the question.

Shortcuts:
ALT + K: Blur or unblur an image or video when hovering over it
ALT + L: To quickly enable or disable the extension

You can now also white list websites, simply open the extension and add the site to your allow list!                    

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

नाम Blur. The Image and Video blur extension Blur. The Image and Video blur extension
ID aikjogmpaoaookmacnkbenekcnkjlkmi
आधिकारिक URL https://chromewebstore.google.com/detail/blur-the-image-and-video/aikjogmpaoaookmacnkbenekcnkjlkmi
विवरण A browser extension that blurs all images on a page, for when you want to be discreet or don't want to look at certain images.
फ़ाइल का आकार 44.54 KB
स्थापना संख्या 7,000
वर्तमान संस्करण 4.0.1
अंतिम अपडेट 2024-03-01
प्रकाशन तिथि 2020-06-16
रेटिंग 4.42/5 कुल 38 रेटिंग्स
डेवलपर Fhazer Systems
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.buymeacoffee.com/fhazer
सहायता पृष्ठ URL https://www.buymeacoffee.com/fhazer
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Blur. The Image and Video blur extension",
    "version": "4.0.1",
    "description": "A browser extension that blurs all images on a page, for when you want to be discreet or don't want to look at certain images.",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "run_at": "document_start",
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "filter.js"
            ]
        }
    ],
    "action": {
        "default_icon": "logo\/icon128.png",
        "default_popup": "popup.html",
        "browser_style": true
    },
    "icons": {
        "128": "logo\/icon128.png"
    },
    "commands": {
        "reverse_status": {
            "suggested_key": {
                "default": "Alt+L"
            },
            "description": "Reverse blur state"
        },
        "toggle_selected": {
            "suggested_key": {
                "default": "Alt+K"
            },
            "description": "Unblur\/reblur selected image"
        }
    },
    "background": {
        "service_worker": "background.js"
    }
}