BlurImage

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

什么是BlurImage?

BlurImage是由dliu开发的Chrome扩展程序,该扩展的主要功能是“This extension will blur all images in img tags on the page. Can whitelist by domains”。

扩展截图

screenshot

下载BlurImage扩展crx文件

下载BlurImage扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
}