WebStart+ New Tab

WebStart+ New Tab

Add the WebStart+ New Tab for quick access to your most visited sites, web search and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "action": {
    "default_icon": "./assets/48.png"
  },
  "background": {
    "service_worker": "rootServiceWorker.js"
  },
  "chrome_url_overrides": {
    "newtab": "newTab.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "./scripts/content.js"
      ],
      "matches": [
        "https://*.webstart.page/chrome*"
      ],
      "run_at": "document_start"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_ExtnDescription__",
  "host_permissions": [
    "https://*.webstart.page/chrome*"
  ],
  "icons": {
    "16": "./assets/16.png",
    "48": "./assets/48.png",
    "128": "./assets/128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_ExtnName__",
  "permissions": [
    "topSites",
    "storage",
    "cookies",
    "alarms"
  ],
  "short_name": "__MSG_ExtnName__",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.0.0",
  "web_accessible_resources": [
    {
      "matches": [],
      "resources": [
        "*.png"
      ]
    }
  ]
}