Favorites Start Page

Favorites Start Page

Big Sur inspired web start page. Still in early development, feedback much appreciated

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Favorites Start Page",
  "description": "Big Sur inspired web start page. Still in early development, feedback much appreciated",
  "version": "0.3.0",
  "version_name": "0.3 beta 1",
  "manifest_version": 3,
  "icons": {
    "32": "assets/icon32.png"
  },
  "permissions": [
    "storage",
    "bookmarks",
    "topSites",
    "contextMenus",
    "scripting"
  ],
  "background": {
    "service_worker": "bg_page.js"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_title": "Start Page",
    "default_icon": "assets/icon32.png"
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  }
}