PEMCRYPT Encrypt large files

A chrome extension to share encrypted data using your private and public keys.

Cos'è PEMCRYPT Encrypt large files?

PEMCRYPT Encrypt large files è un'estensione di Chrome sviluppata da David Coelho Guedes, e la sua funzione principale è "A chrome extension to share encrypted data using your private and public keys.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione PEMCRYPT Encrypt large files

Scarica i file di estensione PEMCRYPT Encrypt large files 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 extension enables users to encrypt large files that will be shared. It enables the user to add their own public and private keys. In this way, you can encrypt a file using a recipient's public key. So the recipient can decrypt with their private key.                    

Informazioni di Base sull'Estensione

Nome PEMCRYPT Encrypt large files PEMCRYPT Encrypt large files
ID cgcleonhiilfonodedicmihmhhbceokj
URL Ufficiale https://chromewebstore.google.com/detail/pemcrypt-encrypt-large-fi/cgcleonhiilfonodedicmihmhhbceokj
Descrizione A chrome extension to share encrypted data using your private and public keys.
Dimensione del File 2.59 MB
Conteggio Installazioni 37
Versione Corrente 1.0.0
Ultimo Aggiornamento 2022-05-21
Data di Pubblicazione 2022-05-17
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore David Coelho Guedes
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.linkedin.com/in/david-coelho/
URL della Pagina di Aiuto https://www.linkedin.com/in/david-coelho/
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension to share encrypted data using your private and public keys.",
    "version": "1.0.0",
    "manifest_version": 3,
    "name": "PEMCRYPT Encrypt large files",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ]
}