BlurPage

Blur any elements or paragraphs on page

What is BlurPage?

BlurPage is a Chrome extension developed by https://blur.page, and its main feature is "Blur any elements or paragraphs on page".

Extension Screenshots

screenshot

Download BlurPage Extension CRX File

Download BlurPage extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name BlurPage BlurPage
ID fdpibkbokddlcpdgkgicamkapmkjcghp
Official URL https://chromewebstore.google.com/detail/blurpage/fdpibkbokddlcpdgkgicamkapmkjcghp
Description Blur any elements or paragraphs on page
File Size 26.36 KB
Installation Count 623
Current Version 1.0.1
Last Updated 2019-05-18
Publish Date 2019-05-14
Rating 3.60/5 Total 5 Ratings
Developer https://blur.page
Email [email protected]
Payment Type in_app
Supported Languages 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"
    ]
}