Locket
Secure communication for the privacy-minded individual
Locket là gì?
Locket là một tiện ích mở rộng Chrome được phát triển bởi https://locketchat.com, và tính năng chính của nó là "Secure communication for the privacy-minded individual".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Locket
Tải xuống các tệp mở rộng Locket dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Locket |
ID | kmclnkpagjmledigbephoecmpihidbla |
URL Chính Thức | https://chromewebstore.google.com/detail/locket/kmclnkpagjmledigbephoecmpihidbla |
Mô tả | Secure communication for the privacy-minded individual |
Kích Thước Tệp | 310 KB |
Số Lần Cài Đặt | 206 |
Phiên Bản Hiện Tại | 0.0.3 |
Cập Nhật Lần Cuối | 2015-11-06 |
Ngày Phát Hành | 2015-11-05 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | https://locketchat.com |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } ] } |