AnyCrypt
This extension enables automatic encrypting and decrypting of gpg messages
Qu'est-ce que AnyCrypt ?
AnyCrypt est une extension Chrome développée par lettergramm, et sa fonction principale est "This extension enables automatic encrypting and decrypting of gpg messages".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension AnyCrypt
Téléchargez les fichiers d'extension AnyCrypt 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
Right-click encryption and decryption between friends on the web.
Informations de Base sur l'Extension
Nom | AnyCrypt |
ID | hddfngccldhojkjdcoamhdaiaoijjbha |
URL Officiel | https://chromewebstore.google.com/detail/anycrypt/hddfngccldhojkjdcoamhdaiaoijjbha |
Description | This extension enables automatic encrypting and decrypting of gpg messages |
Taille du Fichier | 1.13 MB |
Nombre d'Installations | 33 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2016-04-28 |
Date de Publication | 2016-04-28 |
Évaluation | 3.50/5 Total 2 Évaluations |
Développeur | lettergramm |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AnyCrypt", "description": "This extension enables automatic encrypting and decrypting of gpg messages", "version": "0.0.1", "browser_action": { "default_popup": "popup.html", "default_page": "anycrypt.html", "default_icon": "images\/icon1024.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "background": { "scripts": [ "js\/scrypt.js", "js\/hmac-sha512.js", "js\/enc-base64-min.js", "js\/jquery-1.11.3.min.js", "js\/kbpgp.js", "js\/enigma.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery-1.11.3.min.js", "js\/kbpgp.js", "js\/content.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "images\/*.gif", "images\/*.png", "style\/*.css", "script\/*.js" ], "icons": { "256": "images\/icon256.png", "1024": "images\/icon1024.png" }, "permissions": [ "contextMenus", "activeTab", "storage" ] } |