Locket

Secure communication for the privacy-minded individual

O que é Locket?

Locket é uma extensão do Chrome desenvolvida por https://locketchat.com, e sua principal característica é "Secure communication for the privacy-minded individual".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Locket

Baixe arquivos de extensão Locket no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Locket Locket
ID kmclnkpagjmledigbephoecmpihidbla
URL Oficial https://chromewebstore.google.com/detail/locket/kmclnkpagjmledigbephoecmpihidbla
Descrição Secure communication for the privacy-minded individual
Tamanho do Arquivo 310 KB
Contagem de Instalações 206
Versão Atual 0.0.3
Última Atualização 2015-11-06
Data de Publicação 2015-11-05
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor https://locketchat.com
Tipo de Pagamento free
Idiomas Suportados 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
        }
    ]
}