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
官方網址 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
}