InCrypt

Encryption you control

InCryptคืออะไร?

InCrypt เป็นส่วนขยายของ Chrome ที่พัฒนาโดย InCrypt และคุณลักษณะหลักของมันคือ "Encryption you control"

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

screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย InCrypt ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        InCrypt makes end to end encryption easy.  It protects sensitive data by never storing your plain text on remote servers/websites. It automatically encrypts at point of entry and decrypts at point of retrieval. The website you are using never sees the raw data, only the encrypted version, so only you will see your data.

It’s easy to implement InCrypt encryption on a website of your choice. Built-in examples include Pastebin, Github and Gmail.

InCrypt is currently in alpha, and may have bugs or unexpected behavior. We do not recommend making InCrypt the sole storage location for sensitive data.

Read more: https://github.com/incrypt/incrypt                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ InCrypt InCrypt
ID dpjkdfkiiifaeandmfhdklbfiljjippf
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/incrypt/dpjkdfkiiifaeandmfhdklbfiljjippf
คำอธิบาย Encryption you control
ขนาดไฟล์ 203 KB
จำนวนการติดตั้ง 16
เวอร์ชันปัจจุบัน 0.3.0
อัปเดตครั้งล่าสุด 2015-02-13
วันที่เผยแพร่ 2015-02-13
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา InCrypt
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/incrypt/incrypt
URL หน้าช่วยเหลือ https://github.com/incrypt/incrypt
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "InCrypt",
    "version": "0.3.0",
    "description": "Encryption you control",
    "permissions": [
        "tabs",
        "storage",
        "notifications"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/lib\/jquery-2.1.3.min.js",
                "scripts\/lib\/underscore-1.7.0.min.js",
                "scripts\/lib\/string.min.js",
                "scripts\/incrypt\/incrypt-lib.js",
                "scripts\/encryptExisting\/pastebin.js",
                "scripts\/encryptExisting\/keep.js",
                "scripts\/encryptExisting\/gist.js",
                "scripts\/encryptExisting\/gmail.js",
                "scripts\/incrypt\/incrypt.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "scripts\/lib\/cryptico.min.js",
            "scripts\/lib\/underscore-1.7.0.min.js",
            "scripts\/lib\/string.min.js",
            "scripts\/broker\/incryptNotifier.js",
            "scripts\/broker\/incryptStorage.js",
            "scripts\/broker\/incryptCrypto.js",
            "scripts\/broker\/incryptBroker.js"
        ]
    },
    "options_page": "pages\/options.html",
    "options_ui": {
        "page": "pages\/options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/incrypt_19.png",
            "38": "images\/incrypt_38.png"
        },
        "default_title": "InCrypt",
        "default_popup": "pages\/iconPopup.html"
    },
    "icons": {
        "16": "images\/incrypt_16.png",
        "48": "images\/incrypt_48.png",
        "128": "images\/incrypt_128.png"
    },
    "web_accessible_resources": [
        "scripts\/lib\/underscore-min.map",
        "scripts\/encryptExisting\/gist-inpage.js"
    ]
}