Encrypted Bookmarks
Store private bookmarks encrypted in Chrome's local storage.
What is Encrypted Bookmarks?
Encrypted Bookmarks is a Chrome extension developed by Aaron Horler, and its main feature is "Store private bookmarks encrypted in Chrome's local storage.".
Extension Screenshots
Download Encrypted Bookmarks Extension CRX File
Download Encrypted Bookmarks extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This is a very simple extension that demonstrates private bookmark storage using OpenPGP. Bookmarks are added via the right-click context menu, and accessed via the extension toolbar. GitHub source - https://github.com/aghorler/EncryptedBookmarks CHANGELOG 2.0 - First release to Chrome Web Store.
Extension Basic Information
Name | Encrypted Bookmarks |
ID | gdbjccpleamopncgakdgkbpejffpmoia |
Official URL | https://chromewebstore.google.com/detail/encrypted-bookmarks/gdbjccpleamopncgakdgkbpejffpmoia |
Description | Store private bookmarks encrypted in Chrome's local storage. |
File Size | 114 KB |
Installation Count | 356 |
Current Version | 2.0 |
Last Updated | 2018-12-31 |
Publish Date | 2018-12-31 |
Rating | 3.40/5 Total 5 Ratings |
Developer | Aaron Horler |
[email protected] | |
Payment Type | free |
Help Page URL | https://github.com/aghorler/EncryptedBookmarks/blob/master/DOCUMENTATION.md#documentation |
Privacy Policy Page URL | https://aaronhorler.com/privacy.txt |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Encrypted Bookmarks", "version": "2.0", "manifest_version": 2, "description": "Store private bookmarks encrypted in Chrome's local storage.", "background": { "scripts": [ "\/js\/background.js", "\/js\/openpgp.min.js" ], "persistent": false }, "icons": { "128": "\/img\/icon128.png" }, "browser_action": { "name": "Open bookmarks." }, "permissions": [ "contextMenus", "storage", "tabs" ] } |