BlurPage

Blur any elements or paragraphs on page

Cos'è BlurPage?

BlurPage è un'estensione di Chrome sviluppata da https://blur.page, e la sua funzione principale è "Blur any elements or paragraphs on page".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione BlurPage

Scarica i file di estensione BlurPage in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome BlurPage BlurPage
ID fdpibkbokddlcpdgkgicamkapmkjcghp
URL Ufficiale https://chromewebstore.google.com/detail/blurpage/fdpibkbokddlcpdgkgicamkapmkjcghp
Descrizione Blur any elements or paragraphs on page
Dimensione del File 26.36 KB
Conteggio Installazioni 623
Versione Corrente 1.0.1
Ultimo Aggiornamento 2019-05-18
Data di Pubblicazione 2019-05-14
Valutazione 3.60/5 Totale 5 Valutazioni
Sviluppatore https://blur.page
Email [email protected]
Tipo di Pagamento in_app
Lingue Supportate 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"
    ]
}