Cypher text

Cypher any text on web page.

Cos'è Cypher text?

Cypher text è un'estensione di Chrome sviluppata da Ievgenii Vdovenko, e la sua funzione principale è "Cypher any text on web page.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Cypher text

Scarica i file di estensione Cypher text in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Cypher text Cypher text
ID aaiojlbngmjigjncaghednmoglaopmnm
URL Ufficiale https://chrome.google.com/webstore/detail/cypher-text/aaiojlbngmjigjncaghednmoglaopmnm
Descrizione Cypher any text on web page.
Dimensione del File 135 KB
Conteggio Installazioni 97
Versione Corrente 1.0.0
Ultimo Aggiornamento 2015-08-10
Data di Pubblicazione 2015-08-10
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Ievgenii Vdovenko
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}