EnshieldMe
Encrypt any webpage editable field with your passphrase (and decrypt of course)
EnshieldMe là gì?
EnshieldMe là một tiện ích mở rộng Chrome được phát triển bởi https://enshield.me, và tính năng chính của nó là "Encrypt any webpage editable field with your passphrase (and decrypt of course)".
Ả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 EnshieldMe
Tải xuống các tệp mở rộng EnshieldMe 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
Encrypt and submit as encrypted -------------------------------- You can encrypt any field with your secret data to submit it and don't worry that somebody (webpage administrators) will read it. Enter secure passphrase for encryption. Decrypt for reading -------------------- Use the same passphrase to decrypt data. Read/Edit and encrypt it again.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | EnshieldMe |
ID | kkbppfeemcokihanpmoeiekponheemnj |
URL Chính Thức | https://chromewebstore.google.com/detail/enshieldme/kkbppfeemcokihanpmoeiekponheemnj |
Mô tả | Encrypt any webpage editable field with your passphrase (and decrypt of course) |
Kích Thước Tệp | 621 KB |
Số Lần Cài Đặt | 15 |
Phiên Bản Hiện Tại | 1.1.7 |
Cập Nhật Lần Cuối | 2015-03-20 |
Ngày Phát Hành | 2015-03-20 |
Đánh Giá | 5.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | https://enshield.me |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://enshield.me/ |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "EnshieldMe", "short_name": "EnshieldMe", "version": "1.1.7", "description": "Encrypt any webpage editable field with your passphrase (and decrypt of course)", "offline_enabled": true, "incognito": "split", "icons": { "16": "img\/16\/default.png", "36": "img\/36\/default.png", "48": "img\/48\/default.png", "128": "img\/128\/default.png" }, "background": { "scripts": [ "js\/jquery.js", "background.js" ] }, "browser_action": { "default_title": "EnshieldMe - extension", "default_icon": "img\/16\/inactive.png", "default_popup": "popup.html" }, "permissions": [ "background", "contextMenus", "storage", "tabs", "clipboardWrite" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery.js", "js\/functions.js", "js\/modal.js", "content.js" ], "css": [ "content.css" ] } ], "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "nacl_modules": [ { "path": "nacl\/bin\/enshield_p.nmf", "mime_type": "application\/x-pnacl" } ], "web_accessible_resources": [ "img\/*.png", "img\/16\/*.png", "img\/36\/*.png", "img\/48\/*.png", "img\/128\/*.png", "js\/inject.js" ] } |