EnshieldMe

Encrypt any webpage editable field with your passphrase (and decrypt of course)

Qu'est-ce que EnshieldMe ?

EnshieldMe est une extension Chrome développée par https://enshield.me, et sa fonction principale est "Encrypt any webpage editable field with your passphrase (and decrypt of course)".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension EnshieldMe

Téléchargez les fichiers d'extension EnshieldMe au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom EnshieldMe EnshieldMe
ID kkbppfeemcokihanpmoeiekponheemnj
URL Officiel https://chromewebstore.google.com/detail/enshieldme/kkbppfeemcokihanpmoeiekponheemnj
Description Encrypt any webpage editable field with your passphrase (and decrypt of course)
Taille du Fichier 621 KB
Nombre d'Installations 15
Version Actuelle 1.1.7
Dernière Mise à Jour 2015-03-20
Date de Publication 2015-03-20
Évaluation 5.00/5 Total 2 Évaluations
Développeur https://enshield.me
Type de Paiement free
Site Web de l'Extension http://enshield.me/
Langues Prises en Charge 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"
    ]
}