Visual bookmarks

Visual bookmarks

Simple speed dial bookmarks page, including search, add, edit, delete and dragging bookmarks.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_ext_name__",
  "description": "__MSG_ext_desc__",
  "version": "5.12.5",
  "minimum_chrome_version": "95",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "options_page": "options.html",
  "action": {
    "default_title": "__MSG_default_title__"
  },
  "permissions": [
    "scripting",
    "background",
    "bookmarks",
    "storage",
    "unlimitedStorage",
    "tabs",
    "notifications",
    "contextMenus"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  }
}