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
Eメール [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
}