Bookmark Dashboard & the Bookmark Suggestions browser extension · Last updated September 2, 2026
The short version: this project does not collect, transmit, sell, or share any of your data, because it has no server to send it to. Everything — your bookmarks, your automatic-suggestion settings, and the pages the extension has noticed — stays inside your own browser, on your own device.
localStorage, in the browser you opened it in.chrome.storage.local,
which is private to your browser profile and this extension.tabs — to read the URL, title, and favicon of the active tab so it can decide
whether to suggest it as a bookmark. The extension does not read page content and has no
host_permissions to inject scripts into the sites you visit.storage — to save your suggestions, dismissed list, and settings locally via
chrome.storage.local, so they persist between browser sessions on this device.That's the complete permission list. No host_permissions, no scripting,
no webNavigation, no history, and no access to incognito windows unless
you explicitly turn it on in both the browser's extension settings and the dashboard.
Suggestion cards may load a small favicon image directly from the site it belongs to (or from an
embedded data: image), using referrerpolicy="no-referrer" so the request
doesn't leak which page referred it. This is the same as your browser tab already does when
showing that site's icon — no separate service is involved.
If this project ever adds a feature that changes any of the above (for example, an optional server-based sync), this page will be updated first and the "Last updated" date at the top will change accordingly.
Questions about this policy or the project can be raised as an issue on the project's GitHub repository.