Locket

Secure communication for the privacy-minded individual

Τι είναι το Locket;

Το Locket είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://locketchat.com, και η κύρια λειτουργία του είναι "Secure communication for the privacy-minded individual".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Locket

Λήψη αρχείων επέκτασης Locket σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Locket Locket
ID kmclnkpagjmledigbephoecmpihidbla
Επίσημο URL https://chromewebstore.google.com/detail/locket/kmclnkpagjmledigbephoecmpihidbla
Περιγραφή Secure communication for the privacy-minded individual
Μέγεθος Αρχείου 310 KB
Αριθμός Εγκαταστάσεων 206
Τρέχουσα Έκδοση 0.0.3
Τελευταία Ενημέρωση 2015-11-06
Ημερομηνία Δημοσίευσης 2015-11-05
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής https://locketchat.com
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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
        }
    ]
}