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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 URL | 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" ] } |