Crypto Notepad
A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances
Qu'est-ce que Crypto Notepad ?
Crypto Notepad est une extension Chrome développée par https://www.owenmelbourne.com, et sa fonction principale est "A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Crypto Notepad
Téléchargez les fichiers d'extension Crypto Notepad 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
Provides a simple to use scratch pad style note pad right inside your browser. Using AES encryption and Argon2 hashing mechanisms to help keep the your notes secure. Using the Chrome syncing facility it will keep your notes in-sync across your chrome instances. We do not store or have access to any of your data, it is all controlled by your browser install.
Informations de Base sur l'Extension
Nom | Crypto Notepad |
ID | hhjkkblcfjmflhhgjmhciccicdnocbag |
URL Officiel | https://chromewebstore.google.com/detail/crypto-notepad/hhjkkblcfjmflhhgjmhciccicdnocbag |
Description | A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances |
Taille du Fichier | 456 KB |
Nombre d'Installations | 80 |
Version Actuelle | 0.0.5 |
Dernière Mise à Jour | 2018-04-22 |
Date de Publication | 2018-04-22 |
Évaluation | 4.50/5 Total 4 Évaluations |
Développeur | https://www.owenmelbourne.com |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Crypto Notepad", "version": "0.0.5", "manifest_version": 2, "description": "A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "storage" ], "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "Crypto Notes", "default_popup": "popup.html" }, "content_security_policy": "script-src 'self' 'unsafe-eval' http:\/\/localhost:8098; object-src 'self'" } |