Crypto Notepad
A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances
Hvad er Crypto Notepad?
Crypto Notepad er en Chrome-udvidelse udviklet af https://www.owenmelbourne.com, og dens hovedfunktion er "A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances".
Udvidelsesskærmbilleder
Download Crypto Notepad-udvidelses-CRX-fil
Download Crypto Notepad-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | Crypto Notepad |
ID | hhjkkblcfjmflhhgjmhciccicdnocbag |
Officiel URL | https://chromewebstore.google.com/detail/crypto-notepad/hhjkkblcfjmflhhgjmhciccicdnocbag |
Beskrivelse | A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances |
Filstørrelse | 456 KB |
Antal Installationer | 80 |
Nuværende Version | 0.0.5 |
Senest Opdateret | 2018-04-22 |
Udgivelsesdato | 2018-04-22 |
Bedømmelse | 4.50/5 Samlet 4 Bedømmelser |
Udvikler | https://www.owenmelbourne.com |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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'" } |