EnshieldMe
Encrypt any webpage editable field with your passphrase (and decrypt of course)
EnshieldMe क्या है?
EnshieldMe https://enshield.me द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Encrypt any webpage editable field with your passphrase (and decrypt of course)"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में EnshieldMe एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" ] } |