Lite New Tab

Lite New Tab

Beautiful new tab background colors

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Lite New Tab",
  "short_name": "Lite New Tab",
  "version": "1.0.0",
  "description": "Beautiful new tab background colors",
  "chrome_settings_overrides": {
    "search_provider": {
      "encoding": "UTF-8",
      "favicon_url": "https://litenewtab.com/",
      "is_default": true,
      "keyword": "Keyword",
      "name": "Lite New Tab",
      "search_url": "https://search.litenewtab.com/search?q={searchTerms}"
    }
  },
  "icons": {
    "32": "icons/32.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "author": "Trigvent",
  "action": {
    "browser_style": false,
    "default_title": "Lite New Tab"
  },
  "chrome_url_overrides": {
    "newtab": "new-tab.html"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  }
}