PEMCRYPT Encrypt large files

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

O que é PEMCRYPT Encrypt large files?

PEMCRYPT Encrypt large files é uma extensão do Chrome desenvolvida por David Coelho Guedes, e sua principal característica é "A chrome extension to share encrypted data using your private and public keys.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão PEMCRYPT Encrypt large files

Baixe arquivos de extensão PEMCRYPT Encrypt large files no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome PEMCRYPT Encrypt large files PEMCRYPT Encrypt large files
ID cgcleonhiilfonodedicmihmhhbceokj
URL Oficial https://chromewebstore.google.com/detail/pemcrypt-encrypt-large-fi/cgcleonhiilfonodedicmihmhhbceokj
Descrição A chrome extension to share encrypted data using your private and public keys.
Tamanho do Arquivo 2.59 MB
Contagem de Instalações 37
Versão Atual 1.0.0
Última Atualização 2022-05-21
Data de Publicação 2022-05-17
Classificação 5.00/5 Total de 5 Avaliações
Desenvolvedor David Coelho Guedes
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.linkedin.com/in/david-coelho/
URL da Página de Ajuda https://www.linkedin.com/in/david-coelho/
Idiomas Suportados 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": []
        }
    ]
}