EnshieldMe
Encrypt any webpage editable field with your passphrase (and decrypt of course)
什麼是EnshieldMe?
EnshieldMe是由https://enshield.me開發的Chrome擴展程式,該擴展的主要功能是“Encrypt any webpage editable field with your passphrase (and decrypt of course)”。
擴展截圖
下載EnshieldMe擴展crx文件
下載EnshieldMe擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | EnshieldMe |
ID | kkbppfeemcokihanpmoeiekponheemnj |
官方網址 | https://chromewebstore.google.com/detail/enshieldme/kkbppfeemcokihanpmoeiekponheemnj |
簡介 | Encrypt any webpage editable field with your passphrase (and decrypt of course) |
檔案大小 | 621 KB |
安裝次數 | 15 |
目前版本 | 1.1.7 |
更新時間 | 2015-03-20 |
上架時間 | 2015-03-20 |
評分 | 5.00/5 共 2 次評分 |
開發者 | https://enshield.me |
付費類型 | free |
擴展官網 | http://enshield.me/ |
支援的語言 | 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" ] } |