AnyCrypt

This extension enables automatic encrypting and decrypting of gpg messages

Cos'è AnyCrypt?

AnyCrypt è un'estensione di Chrome sviluppata da lettergramm, e la sua funzione principale è "This extension enables automatic encrypting and decrypting of gpg messages".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione AnyCrypt

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

                        Right-click encryption and decryption between friends on the web.                    

Informazioni di Base sull'Estensione

Nome AnyCrypt AnyCrypt
ID hddfngccldhojkjdcoamhdaiaoijjbha
URL Ufficiale https://chromewebstore.google.com/detail/anycrypt/hddfngccldhojkjdcoamhdaiaoijjbha
Descrizione This extension enables automatic encrypting and decrypting of gpg messages
Dimensione del File 1.13 MB
Conteggio Installazioni 33
Versione Corrente 0.0.1
Ultimo Aggiornamento 2016-04-28
Data di Pubblicazione 2016-04-28
Valutazione 3.50/5 Totale 2 Valutazioni
Sviluppatore lettergramm
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AnyCrypt",
    "description": "This extension enables automatic encrypting and decrypting of gpg messages",
    "version": "0.0.1",
    "browser_action": {
        "default_popup": "popup.html",
        "default_page": "anycrypt.html",
        "default_icon": "images\/icon1024.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "background": {
        "scripts": [
            "js\/scrypt.js",
            "js\/hmac-sha512.js",
            "js\/enc-base64-min.js",
            "js\/jquery-1.11.3.min.js",
            "js\/kbpgp.js",
            "js\/enigma.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery-1.11.3.min.js",
                "js\/kbpgp.js",
                "js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/*.gif",
        "images\/*.png",
        "style\/*.css",
        "script\/*.js"
    ],
    "icons": {
        "256": "images\/icon256.png",
        "1024": "images\/icon1024.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage"
    ]
}