PIA notify

This extension will show a message when your're not connected to PIA

Cos'è PIA notify?

PIA notify è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "This extension will show a message when your're not connected to PIA".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione PIA notify

Scarica i file di estensione PIA notify 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

                        This WebExtension (Chrome extension/Firefox Add-on) will scrape the private internet access website to determine if your're protected or not.
If not, it will temporarily show a warning on top of the page your're browsing.

This might be useful when you find privacy important and want a more in your face, but still subtle, warning that your VPN is down, for example:
- You have an OVPN client running on your router, so current VPN status is not easily visible.
- You hide your task bar / notification bar.
- You find the icons of the PIA apps too hard to read, or you forget about them every time.                    

Informazioni di Base sull'Estensione

Nome PIA notify PIA notify
ID lddgmcdbhkongehiiikdjjhccmapmmdp
URL Ufficiale https://chromewebstore.google.com/detail/pia-notify/lddgmcdbhkongehiiikdjjhccmapmmdp
Descrizione This extension will show a message when your're not connected to PIA
Dimensione del File 120 KB
Conteggio Installazioni 16
Versione Corrente 1.0.0
Ultimo Aggiornamento 2018-06-29
Data di Pubblicazione 2018-06-29
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/errier/pia-notify
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PIA notify",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "This extension will show a message when your're not connected to PIA",
    "homepage_url": "https:\/\/github.com\/errier\/pia-notify",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "permissions": [
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "js\/contentScript.js"
            ]
        }
    ]
}