PEMCRYPT Encrypt large files

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

Wat is PEMCRYPT Encrypt large files?

PEMCRYPT Encrypt large files is een Chrome-extensie ontwikkeld door David Coelho Guedes, en de belangrijkste functie is "A chrome extension to share encrypted data using your private and public keys.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie PEMCRYPT Encrypt large files

Download PEMCRYPT Encrypt large files-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam PEMCRYPT Encrypt large files PEMCRYPT Encrypt large files
ID cgcleonhiilfonodedicmihmhhbceokj
Officiële URL https://chromewebstore.google.com/detail/pemcrypt-encrypt-large-fi/cgcleonhiilfonodedicmihmhhbceokj
Beschrijving A chrome extension to share encrypted data using your private and public keys.
Bestandsgrootte 2.59 MB
Aantal Installaties 37
Huidige Versie 1.0.0
Laatst Bijgewerkt 2022-05-21
Publicatiedatum 2022-05-17
Beoordeling 5.00/5 Totaal 5 Beoordelingen
Ontwikkelaar David Coelho Guedes
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://www.linkedin.com/in/david-coelho/
Help Pagina-URL https://www.linkedin.com/in/david-coelho/
Ondersteunde Talen 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": []
        }
    ]
}