Locket
Secure communication for the privacy-minded individual
Qu'est-ce que Locket ?
Locket est une extension Chrome développée par https://locketchat.com, et sa fonction principale est "Secure communication for the privacy-minded individual".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Locket
Téléchargez les fichiers d'extension Locket au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Locket |
ID | kmclnkpagjmledigbephoecmpihidbla |
URL Officiel | https://chromewebstore.google.com/detail/locket/kmclnkpagjmledigbephoecmpihidbla |
Description | Secure communication for the privacy-minded individual |
Taille du Fichier | 310 KB |
Nombre d'Installations | 206 |
Version Actuelle | 0.0.3 |
Dernière Mise à Jour | 2015-11-06 |
Date de Publication | 2015-11-05 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | https://locketchat.com |
Type de Paiement | free |
Langues Prises en Charge | 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 } ] } |