Cypher text

Cypher any text on web page.

O que é Cypher text?

Cypher text é uma extensão do Chrome desenvolvida por Ievgenii Vdovenko, e sua principal característica é "Cypher any text on web page.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Cypher text

Baixe arquivos de extensão Cypher text no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Cypher text Cypher text
ID aaiojlbngmjigjncaghednmoglaopmnm
URL Oficial https://chrome.google.com/webstore/detail/cypher-text/aaiojlbngmjigjncaghednmoglaopmnm
Descrição Cypher any text on web page.
Tamanho do Arquivo 135 KB
Contagem de Instalações 97
Versão Atual 1.0.0
Última Atualização 2015-08-10
Data de Publicação 2015-08-10
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Ievgenii Vdovenko
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}