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 |
官方網址 | 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 |
電子郵箱 | [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'" } |