Text Encryption Tool

Encrypt, decrypt, store, and sync textual data using SHA-256 Hash algorithm

什么是Text Encryption Tool?

Text Encryption Tool是由joue.quroi开发的Chrome扩展程序,该扩展的主要功能是“Encrypt, decrypt, store, and sync textual data using SHA-256 Hash algorithm”。

扩展截图

screenshot
screenshot

下载Text Encryption Tool扩展crx文件

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

扩展使用说明

                        This extension enhances your right-click context menu for text selections with the following options:

1. Securely copy selected text to the clipboard with encryption.
2. Encrypt selected text and securely save it in synchronized storage.
3. Replace the original content with encrypted text.

In addition, it offers the ability to:
4. Decrypt encrypted text and copy it to the clipboard.
5. Decrypt encrypted text and replace the original content.

Important details about the extension:
- The extension uses your passphrase to generate a new SHA-256 private key and a random public key for text encryption and decryption.
- Please remember your passphrase, as there is no way to recover encrypted text if it is forgotten. For your privacy, the extension does not store passphrases.
- You can choose to store encrypted content in your browser's synchronized storage for easy access across synced browsers.

Some use cases for this extension include:
1. Safely encrypting passwords when sending emails.
2. Privately archiving important data.
3. Securely transmitting sensitive information, like passwords, to another device.

Privacy assurance:
This extension operates entirely offline, ensuring no data is sent to any external server.                    

扩展基本信息

名称 Text Encryption Tool Text Encryption Tool
ID dbamnickgaplfmadnoegnbpjlojmjpge
官方URL https://chromewebstore.google.com/detail/text-encryption-tool/dbamnickgaplfmadnoegnbpjlojmjpge
简介 Encrypt, decrypt, store, and sync textual data using SHA-256 Hash algorithm
文件大小 39.34 KB
安装次数 858
当前版本 0.2.5
更新时间 2023-09-13
上架时间 2017-12-20
评分 4.86/5 共7次评分
开发者 joue.quroi
电子邮箱 [email protected]
付费类型 free
扩展官网 https://webextension.org/listing/text-encryption-tool.html
帮助页面URL https://webextension.org/listing/text-encryption-tool.html
支持的语言 de,en,fr,nl,it,pt-BR,pt-PT,ru,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.2.5",
    "name": "Text Encryption Tool",
    "description": "__MSG_description__",
    "default_locale": "en",
    "icons": {
        "16": "\/data\/icons\/16.png",
        "32": "\/data\/icons\/32.png",
        "48": "\/data\/icons\/48.png",
        "64": "\/data\/icons\/64.png",
        "128": "\/data\/icons\/128.png",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "permissions": [
        "contextMenus",
        "notifications",
        "storage",
        "activeTab",
        "scripting"
    ],
    "homepage_url": "https:\/\/webextension.org\/listing\/text-encryption-tool.html",
    "background": {
        "service_worker": "worker.js"
    },
    "action": [],
    "commands": {
        "_execute_action": []
    }
}