Text Encryption Tool

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

¿Qué es Text Encryption Tool?

Text Encryption Tool es una extensión de Chrome desarrollada por joue.quroi, y su función principal es "Encrypt, decrypt, store, and sync textual data using SHA-256 Hash algorithm".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Text Encryption Tool

Descarga archivos de extensión Text Encryption Tool en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Text Encryption Tool Text Encryption Tool
ID dbamnickgaplfmadnoegnbpjlojmjpge
URL Oficial https://chromewebstore.google.com/detail/text-encryption-tool/dbamnickgaplfmadnoegnbpjlojmjpge
Descripción Encrypt, decrypt, store, and sync textual data using SHA-256 Hash algorithm
Tamaño del Archivo 39.34 KB
Cantidad de Instalaciones 858
Versión Actual 0.2.5
Última Actualización 2023-09-13
Fecha de Publicación 2017-12-20
Calificación 4.86/5 Total de 7 Calificaciones
Desarrollador joue.quroi
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://webextension.org/listing/text-encryption-tool.html
URL de la Página de Ayuda https://webextension.org/listing/text-encryption-tool.html
Idiomas Soportados 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": []
    }
}