PEMCRYPT Encrypt large files

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

What is PEMCRYPT Encrypt large files?

PEMCRYPT Encrypt large files is a Chrome extension developed by David Coelho Guedes, and its main feature is "A chrome extension to share encrypted data using your private and public keys.".

Extension Screenshots

screenshot
screenshot
screenshot

Download PEMCRYPT Encrypt large files Extension CRX File

Download PEMCRYPT Encrypt large files extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name PEMCRYPT Encrypt large files PEMCRYPT Encrypt large files
ID cgcleonhiilfonodedicmihmhhbceokj
Official URL https://chromewebstore.google.com/detail/pemcrypt-encrypt-large-fi/cgcleonhiilfonodedicmihmhhbceokj
Description A chrome extension to share encrypted data using your private and public keys.
File Size 2.59 MB
Installation Count 37
Current Version 1.0.0
Last Updated 2022-05-21
Publish Date 2022-05-17
Rating 5.00/5 Total 5 Ratings
Developer David Coelho Guedes
Email [email protected]
Payment Type free
Extension Website https://www.linkedin.com/in/david-coelho/
Help Page URL https://www.linkedin.com/in/david-coelho/
Supported Languages 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": []
        }
    ]
}