Cypher text

Cypher any text on web page.

什么是Cypher text?

Cypher text是由Ievgenii Vdovenko开发的Chrome扩展程序,该扩展的主要功能是“Cypher any text on web page.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Cypher text扩展crx文件

下载Cypher text扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Cypher text Cypher text
ID aaiojlbngmjigjncaghednmoglaopmnm
官方URL https://chrome.google.com/webstore/detail/cypher-text/aaiojlbngmjigjncaghednmoglaopmnm
简介 Cypher any text on web page.
文件大小 135 KB
安装次数 97
当前版本 1.0.0
更新时间 2015-08-10
上架时间 2015-08-10
评分 5.00/5 共1次评分
开发者 Ievgenii Vdovenko
付费类型 free
支持的语言 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"
    ]
}