Locket

Secure communication for the privacy-minded individual

Locketคืออะไร?

Locket เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://locketchat.com และคุณลักษณะหลักของมันคือ "Secure communication for the privacy-minded individual"

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

screenshot
screenshot
screenshot

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

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

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

                        Allows integration with existing messaging services (Facebook complete, Google Hangouts in progress) with an alternate, privacy-focused messaging service (www.locketchat.com). With the extension enabled, users are able to chat on Facebook, Hangouts, or Locket Chat using end-to-end PGP encryption.                    

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

ชื่อ Locket Locket
ID kmclnkpagjmledigbephoecmpihidbla
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/locket/kmclnkpagjmledigbephoecmpihidbla
คำอธิบาย Secure communication for the privacy-minded individual
ขนาดไฟล์ 310 KB
จำนวนการติดตั้ง 206
เวอร์ชันปัจจุบัน 0.0.3
อัปเดตครั้งล่าสุด 2015-11-06
วันที่เผยแพร่ 2015-11-05
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา https://locketchat.com
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Locket",
    "description": "Secure communication for the privacy-minded individual",
    "version": "0.0.3",
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "http:\/\/www.messenger.com\/",
        "https:\/\/www.messenger.com\/",
        "http:\/\/www.facebook.com\/",
        "https:\/\/www.facebook.com\/",
        "https:\/\/hangouts.google.com\/",
        "http:\/\/hangouts.google.com\/"
    ],
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.facebook.com\/*"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.js",
                "facebook.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        },
        {
            "matches": [
                "*:\/\/localhost\/*",
                "https:\/\/quiet-shelf-3419.herokuapp.com\/*",
                "*:\/\/*.locketchat.com\/*"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.js",
                "main.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/hangouts.google.com\/*"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.js",
                "bower_components\/D.js\/lib\/D.min.js",
                "hangouts.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}