A Fine Start - minimal new tab page

A Fine Start - minimal new tab page

A minimal new tab page for Chrome that presents your favorite links as a clean, simple list.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "A Fine Start - minimal new tab page",
  "short_name": "A Fine Start",
  "version": "2.4.2",
  "author": "Blake Watson",
  "description": "A minimal new tab page for Chrome that presents your favorite links as a clean, simple list.",
  "icons": {
    "16": "assets/images/16.png",
    "32": "assets/images/32.png",
    "128": "assets/images/128.png"
  },
  "action": {
    "browser_style": true,
    "default_title": "Add current page to A Fine Start",
    "default_icon": {
      "16": "assets/images/16.png",
      "32": "assets/images/32.png",
      "128": "assets/images/128.png"
    },
    "default_popup": "action/popup.html"
  },
  "commands": {
    "search": {
      "suggested_key": {
        "default": "Ctrl+Shift+K"
      },
      "description": "Search in A Fine Start"
    }
  },
  "omnibox": {
    "keyword": "afs"
  },
  "chrome_url_overrides": {
    "newtab": "bookmarks/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://afinestart.me/*"
      ],
      "js": [
        "assets/js/content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "assets/js/background.js",
    "type": "module"
  },
  "externally_connectable": {
    "matches": [
      "https://afinestart.me/*"
    ]
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "https://afinestart.me/*"
  ]
}