One Page Favorites

One Page Favorites

Shows a unified view of the browser tabs, bookmarks, and visit history on one page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "version": "1.0",
  "author": "William Wong",
  "default_locale": "en",
  "icons": {
    "48": "icons/app-48x48.png",
    "96": "icons/app-96x96.png",
    "144": "icons/app-144x144.png",
    "240": "icons/app-240x240.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "bookmarks",
    "history"
  ],
  "background": {
    "service_worker": "background/background_daemon.js",
    "type": "module"
  },
  "options_ui": {
    "page": "options/one_page_options.html",
    "open_in_tab": true
  },
  "action": {
    "default_icon": {
      "48": "icons/app-48x48.png",
      "96": "icons/app-96x96.png",
      "144": "icons/app-144x144.png",
      "240": "icons/app-240x240.png"
    },
    "default_title": "__MSG_browser_action_title__"
  },
  "commands": {
    "activate": {
      "suggested_key": {
        "default": "Alt+L"
      },
      "description": "Launch the One Page Favorites extension page."
    }
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}