Locket
Secure communication for the privacy-minded individual
Was ist Locket?
Locket ist eine Chrome-Erweiterung, die von https://locketchat.com entwickelt wurde, und ihr Hauptmerkmal ist "Secure communication for the privacy-minded individual".
Erweiterungsscreenshots
Locket-Erweiterungs-CRX-Datei herunterladen
Laden Sie Locket-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | kmclnkpagjmledigbephoecmpihidbla |
| Offizielle URL | https://chromewebstore.google.com/detail/locket/kmclnkpagjmledigbephoecmpihidbla |
| Beschreibung | Secure communication for the privacy-minded individual |
| Dateigröße | 310 KB |
| Installationsanzahl | 206 |
| Aktuelle Version | 0.0.3 |
| Letztes Update | 2015-11-06 |
| Veröffentlichungsdatum | 2015-11-05 |
| Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
| Entwickler | https://locketchat.com |
| Zahlungsart | free |
| Unterstützte Sprachen | 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
}
]
} | |