Crypto Notepad
A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances
Crypto Notepadとは何ですか?
Crypto Notepadはhttps://www.owenmelbourne.comによって開発されたChromeの拡張機能で、その主な機能は「A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances」です。
拡張機能のスクリーンショット
Crypto Notepad拡張機能のCRXファイルをダウンロード
Crypto Notepad拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Crypto Notepad |
ID | hhjkkblcfjmflhhgjmhciccicdnocbag |
公式URL | https://chromewebstore.google.com/detail/crypto-notepad/hhjkkblcfjmflhhgjmhciccicdnocbag |
説明 | A simple extension which acts as a small notepad in your browser that encrypts and syncs across chrome instances |
ファイルサイズ | 456 KB |
インストール数 | 80 |
現在のバージョン | 0.0.5 |
最終更新日 | 2018-04-22 |
公開日 | 2018-04-22 |
評価 | 4.50/5 合計 4 レビュー |
開発者 | https://www.owenmelbourne.com |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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'" } |