Locket
Secure communication for the privacy-minded individual
Vad är Locket?
Locket är en Chrome-tillägg utvecklad av https://locketchat.com, och dess huvudfunktion är "Secure communication for the privacy-minded individual".
Tilläggsskärmbilder
Ladda ner Locket-förlängningens CRX-fil
Ladda ner Locket-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Locket |
ID | kmclnkpagjmledigbephoecmpihidbla |
Officiell webbadress | https://chromewebstore.google.com/detail/locket/kmclnkpagjmledigbephoecmpihidbla |
Beskrivning | Secure communication for the privacy-minded individual |
Filstorlek | 310 KB |
Antal Installationer | 206 |
Aktuell Version | 0.0.3 |
Senast Uppdaterad | 2015-11-06 |
Publiceringsdatum | 2015-11-05 |
Betyg | 5.00/5 Totalt 3 Betyg |
Utvecklare | https://locketchat.com |
Betalningssätt | free |
Stödda Språk | 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 } ] } |