Cypher text

Cypher any text on web page.

¿Qué es Cypher text?

Cypher text es una extensión de Chrome desarrollada por Ievgenii Vdovenko, y su función principal es "Cypher any text on web page.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Cypher text

Descarga archivos de extensión Cypher text 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 plugin allow you to cypher text on client side. This extension uses AES cypher by pass phrase. 

To encrypt text:
1. Select text.
2. Next - invoke context menu.
3. Select сypher from context menu, and select encrypt text.
4. Enter passphrase - changes immediately will be shown on client site.

To decrypt text follow same steps, but choose decrypt text from menu.                    

Información Básica de la Extensión

Nombre Cypher text Cypher text
ID aaiojlbngmjigjncaghednmoglaopmnm
URL Oficial https://chrome.google.com/webstore/detail/cypher-text/aaiojlbngmjigjncaghednmoglaopmnm
Descripción Cypher any text on web page.
Tamaño del Archivo 135 KB
Cantidad de Instalaciones 97
Versión Actual 1.0.0
Última Actualización 2015-08-10
Fecha de Publicación 2015-08-10
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Ievgenii Vdovenko
Tipo de Pago free
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Cypher text",
    "version": "1.0.0",
    "description": "Cypher any text on web page.",
    "icons": {
        "16": "ico\/icon-bitty.png",
        "64": "ico\/icon-medium.png",
        "128": "ico\/icon-large.png"
    },
    "background": {
        "scripts": [
            "js\/constants.js",
            "js\/passphraseResolver.js",
            "lib\/rc4.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "js\/constants.js",
                "js\/save_last_element.js",
                "js\/contentMain.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "background",
        "contextMenus",
        "tabs"
    ]
}