Cypher text

Cypher any text on web page.

What is Cypher text?

Cypher text is a Chrome extension developed by Ievgenii Vdovenko, and its main feature is "Cypher any text on web page.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Cypher text Extension CRX File

Download Cypher text extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Cypher text Cypher text
ID aaiojlbngmjigjncaghednmoglaopmnm
Official URL https://chrome.google.com/webstore/detail/cypher-text/aaiojlbngmjigjncaghednmoglaopmnm
Description Cypher any text on web page.
File Size 135 KB
Installation Count 97
Current Version 1.0.0
Last Updated 2015-08-10
Publish Date 2015-08-10
Rating 5.00/5 Total 1 Ratings
Developer Ievgenii Vdovenko
Payment Type free
Supported Languages 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"
    ]
}