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开发的Chrome扩展程序,该扩展的主要功能是“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

下载Blur. The Image and Video blur extension扩展crx文件

下载Blur. The Image and Video blur extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}