Locket

Secure communication for the privacy-minded individual

Locketとは何ですか?

Locketはhttps://locketchat.comによって開発されたChromeの拡張機能で、その主な機能は「Secure communication for the privacy-minded individual」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Locket拡張機能のCRXファイルをダウンロード

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