EnshieldMe
Encrypt any webpage editable field with your passphrase (and decrypt of course)
Cos'è EnshieldMe?
EnshieldMe è un'estensione di Chrome sviluppata da https://enshield.me, e la sua funzione principale è "Encrypt any webpage editable field with your passphrase (and decrypt of course)".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione EnshieldMe
Scarica i file di estensione EnshieldMe in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | EnshieldMe |
ID | kkbppfeemcokihanpmoeiekponheemnj |
URL Ufficiale | https://chromewebstore.google.com/detail/enshieldme/kkbppfeemcokihanpmoeiekponheemnj |
Descrizione | Encrypt any webpage editable field with your passphrase (and decrypt of course) |
Dimensione del File | 621 KB |
Conteggio Installazioni | 15 |
Versione Corrente | 1.1.7 |
Ultimo Aggiornamento | 2015-03-20 |
Data di Pubblicazione | 2015-03-20 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | https://enshield.me |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://enshield.me/ |
Lingue Supportate | 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" ] } |