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

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

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