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
官方網址 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"
    ]
}