Crypto Notepad
A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances
What is Crypto Notepad?
Crypto Notepad is a Chrome extension developed by https://www.owenmelbourne.com, and its main feature is "A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances".
Extension Screenshots
Download Crypto Notepad Extension CRX File
Download Crypto Notepad extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Crypto Notepad |
ID | hhjkkblcfjmflhhgjmhciccicdnocbag |
Official URL | 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 |
File Size | 456 KB |
Installation Count | 80 |
Current Version | 0.0.5 |
Last Updated | 2018-04-22 |
Publish Date | 2018-04-22 |
Rating | 4.50/5 Total 4 Ratings |
Developer | https://www.owenmelbourne.com |
[email protected] | |
Payment Type | free |
Supported Languages | 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'" } |