Encrypted Bookmarks
Store private bookmarks encrypted in Chrome's local storage.
Was ist Encrypted Bookmarks?
Encrypted Bookmarks ist eine Chrome-Erweiterung, die von Aaron Horler entwickelt wurde, und ihr Hauptmerkmal ist "Store private bookmarks encrypted in Chrome's local storage.".
Erweiterungsscreenshots
Encrypted Bookmarks-Erweiterungs-CRX-Datei herunterladen
Laden Sie Encrypted Bookmarks-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | gdbjccpleamopncgakdgkbpejffpmoia |
| Offizielle URL | https://chromewebstore.google.com/detail/encrypted-bookmarks/gdbjccpleamopncgakdgkbpejffpmoia |
| Beschreibung | Store private bookmarks encrypted in Chrome's local storage. |
| Dateigröße | 114 KB |
| Installationsanzahl | 356 |
| Aktuelle Version | 2.0 |
| Letztes Update | 2018-12-31 |
| Veröffentlichungsdatum | 2018-12-31 |
| Bewertung | 3.40/5 Insgesamt 5 Bewertungen |
| Entwickler | Aaron Horler |
| [email protected] | |
| Zahlungsart | free |
| Hilfeseite URL | https://github.com/aghorler/EncryptedBookmarks/blob/master/DOCUMENTATION.md#documentation |
| URL der Datenschutzrichtlinien-Seite | https://aaronhorler.com/privacy.txt |
| Unterstützte Sprachen | 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"
]
} | |