BlurPage

Blur any elements or paragraphs on page

Wat is BlurPage?

BlurPage is een Chrome-extensie ontwikkeld door https://blur.page, en de belangrijkste functie is "Blur any elements or paragraphs on page".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie BlurPage

Download BlurPage-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam BlurPage BlurPage
ID fdpibkbokddlcpdgkgicamkapmkjcghp
Officiële URL https://chromewebstore.google.com/detail/blurpage/fdpibkbokddlcpdgkgicamkapmkjcghp
Beschrijving Blur any elements or paragraphs on page
Bestandsgrootte 26.36 KB
Aantal Installaties 623
Huidige Versie 1.0.1
Laatst Bijgewerkt 2019-05-18
Publicatiedatum 2019-05-14
Beoordeling 3.60/5 Totaal 5 Beoordelingen
Ontwikkelaar https://blur.page
E-mail [email protected]
Betalingswijze in_app
Ondersteunde Talen 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"
    ]
}