Override Homepage

Override Homepage

Take control of your browser's startup pages. Specify URLs to close and replace with a homepage of your choice.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Override Homepage",
  "version": "0.0.0.1",
  "description": "Take control of your browser's startup pages. Specify URLs to close and replace with a homepage of your choice.",
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": false
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "icons/icon16x16.png",
    "32": "icons/icon32x32.png",
    "48": "icons/icon48x48.png",
    "128": "icons/icon128x128.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ]
}