Lighthouse

Lighthouse

Lighthouse allows you to customize your new tab, but also allows you to use more cool features

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Lighthouse",
  "description": "Lighthouse allows you to customize your new tab, but also allows you to use more cool features",
  "keyword": [
    "chrome",
    "notepad",
    "timer",
    "Background",
    "New TAB",
    "simplicity",
    "fast",
    "tab",
    "Weather"
  ],
  "version": "2.0",
  "options_page": "options.html",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "64": "logo_64.png",
      "128": "logo_128.png",
      "192": "logo_192.png",
      "512": "logo_512.png"
    }
  },
  "permissions": [
    "proxy"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "chrome_url_overrides": {
    "newtab": "options.html"
  },
  "host_permissions": [
    "https://developer.chrome.com/*"
  ]
}