Cypher text

Cypher any text on web page.

Cypher text là gì?

Cypher text là một tiện ích mở rộng Chrome được phát triển bởi Ievgenii Vdovenko, và tính năng chính của nó là "Cypher any text on web page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Cypher text

Tải xuống các tệp mở rộng Cypher text dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Cypher text Cypher text
ID aaiojlbngmjigjncaghednmoglaopmnm
URL Chính Thức https://chrome.google.com/webstore/detail/cypher-text/aaiojlbngmjigjncaghednmoglaopmnm
Mô tả Cypher any text on web page.
Kích Thước Tệp 135 KB
Số Lần Cài Đặt 97
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2015-08-10
Ngày Phát Hành 2015-08-10
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Ievgenii Vdovenko
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}