PEMCRYPT Encrypt large files

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

什么是PEMCRYPT Encrypt large files?

PEMCRYPT Encrypt large files是由David Coelho Guedes开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension to share encrypted data using your private and public keys.”。

扩展截图

screenshot
screenshot
screenshot

下载PEMCRYPT Encrypt large files扩展crx文件

下载PEMCRYPT Encrypt large files扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 PEMCRYPT Encrypt large files PEMCRYPT Encrypt large files
ID cgcleonhiilfonodedicmihmhhbceokj
官方URL https://chromewebstore.google.com/detail/pemcrypt-encrypt-large-fi/cgcleonhiilfonodedicmihmhhbceokj
简介 A chrome extension to share encrypted data using your private and public keys.
文件大小 2.59 MB
安装次数 37
当前版本 1.0.0
更新时间 2022-05-21
上架时间 2022-05-17
评分 5.00/5 共5次评分
开发者 David Coelho Guedes
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.linkedin.com/in/david-coelho/
帮助页面URL https://www.linkedin.com/in/david-coelho/
支持的语言 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": []
        }
    ]
}