PEMCRYPT Encrypt large files

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

¿Qué es PEMCRYPT Encrypt large files?

PEMCRYPT Encrypt large files es una extensión de Chrome desarrollada por David Coelho Guedes, y su función principal es "A chrome extension to share encrypted data using your private and public keys.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión PEMCRYPT Encrypt large files

Descarga archivos de extensión PEMCRYPT Encrypt large files en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre PEMCRYPT Encrypt large files PEMCRYPT Encrypt large files
ID cgcleonhiilfonodedicmihmhhbceokj
URL Oficial https://chromewebstore.google.com/detail/pemcrypt-encrypt-large-fi/cgcleonhiilfonodedicmihmhhbceokj
Descripción A chrome extension to share encrypted data using your private and public keys.
Tamaño del Archivo 2.59 MB
Cantidad de Instalaciones 37
Versión Actual 1.0.0
Última Actualización 2022-05-21
Fecha de Publicación 2022-05-17
Calificación 5.00/5 Total de 5 Calificaciones
Desarrollador David Coelho Guedes
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.linkedin.com/in/david-coelho/
URL de la Página de Ayuda https://www.linkedin.com/in/david-coelho/
Idiomas Soportados 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": []
        }
    ]
}