BlurPage

Blur any elements or paragraphs on page

BlurPageとは何ですか?

BlurPageはhttps://blur.pageによって開発されたChromeの拡張機能で、その主な機能は「Blur any elements or paragraphs on page」です。

拡張機能のスクリーンショット

screenshot

BlurPage拡張機能のCRXファイルをダウンロード

BlurPage拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Have you ever wanted to hide sensitive information on a web page, before doing something else, such as taking a screenshot?

This extension is for you! It allows you to blur any element or paragraph on page without leaving your browser.                    

拡張機能の基本情報

名前 BlurPage BlurPage
ID fdpibkbokddlcpdgkgicamkapmkjcghp
公式URL https://chromewebstore.google.com/detail/blurpage/fdpibkbokddlcpdgkgicamkapmkjcghp
説明 Blur any elements or paragraphs on page
ファイルサイズ 26.36 KB
インストール数 623
現在のバージョン 1.0.1
最終更新日 2019-05-18
公開日 2019-05-14
評価 3.60/5 合計 5 レビュー
開発者 https://blur.page
Eメール [email protected]
支払い方法 in_app
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BlurPage",
    "description": "Blur any elements or paragraphs on page",
    "author": "Phuoc Nguyen",
    "version": "1.0.1",
    "homepage_url": "https:\/\/blur.page",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/blur.js",
                "js\/content.js"
            ],
            "css": [
                "css\/blur.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "24": "images\/icon-24.png",
            "48": "images\/icon-48.png",
            "96": "images\/icon-96.png",
            "512": "images\/icon-512.png"
        },
        "default_title": "Choose elements to blur"
    },
    "icons": {
        "24": "images\/icon-24.png",
        "48": "images\/icon-48.png"
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ]
}