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
官方網址 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
電子郵箱 [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"
    ]
}