Cypher text

Cypher any text on web page.

Cypher textคืออะไร?

Cypher text เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ievgenii Vdovenko และคุณลักษณะหลักของมันคือ "Cypher any text on web page."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cypher text

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}