Crypto Notepad
A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances
Was ist Crypto Notepad?
Crypto Notepad ist eine Chrome-Erweiterung, die von https://www.owenmelbourne.com entwickelt wurde, und ihr Hauptmerkmal ist "A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances".
Erweiterungsscreenshots
Crypto Notepad-Erweiterungs-CRX-Datei herunterladen
Laden Sie Crypto Notepad-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Crypto Notepad |
ID | hhjkkblcfjmflhhgjmhciccicdnocbag |
Offizielle URL | https://chromewebstore.google.com/detail/crypto-notepad/hhjkkblcfjmflhhgjmhciccicdnocbag |
Beschreibung | A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances |
Dateigröße | 456 KB |
Installationsanzahl | 80 |
Aktuelle Version | 0.0.5 |
Letztes Update | 2018-04-22 |
Veröffentlichungsdatum | 2018-04-22 |
Bewertung | 4.50/5 Insgesamt 4 Bewertungen |
Entwickler | https://www.owenmelbourne.com |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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'" } |