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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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