Locket
Secure communication for the privacy-minded individual
Cos'è Locket?
Locket è un'estensione di Chrome sviluppata da https://locketchat.com, e la sua funzione principale è "Secure communication for the privacy-minded individual".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Locket
Scarica i file di estensione Locket in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Locket |
ID | kmclnkpagjmledigbephoecmpihidbla |
URL Ufficiale | https://chromewebstore.google.com/detail/locket/kmclnkpagjmledigbephoecmpihidbla |
Descrizione | Secure communication for the privacy-minded individual |
Dimensione del File | 310 KB |
Conteggio Installazioni | 206 |
Versione Corrente | 0.0.3 |
Ultimo Aggiornamento | 2015-11-06 |
Data di Pubblicazione | 2015-11-05 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | https://locketchat.com |
Tipo di Pagamento | free |
Lingue Supportate | 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 } ] } |