Crypto Notepad
A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances
Cos'è Crypto Notepad?
Crypto Notepad è un'estensione di Chrome sviluppata da https://www.owenmelbourne.com, e la sua funzione principale è "A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Crypto Notepad
Scarica i file di estensione Crypto Notepad in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Crypto Notepad |
ID | hhjkkblcfjmflhhgjmhciccicdnocbag |
URL Ufficiale | https://chromewebstore.google.com/detail/crypto-notepad/hhjkkblcfjmflhhgjmhciccicdnocbag |
Descrizione | A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances |
Dimensione del File | 456 KB |
Conteggio Installazioni | 80 |
Versione Corrente | 0.0.5 |
Ultimo Aggiornamento | 2018-04-22 |
Data di Pubblicazione | 2018-04-22 |
Valutazione | 4.50/5 Totale 4 Valutazioni |
Sviluppatore | https://www.owenmelbourne.com |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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'" } |