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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    ]
}