Chrou Tab

Chrou Tab

A replica of the default newtab page on a browser, allowing other browsers to experience Chrou newtab page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "1.0.0",
  "name": "__MSG_EXTENSION_NAME__",
  "description": "__MSG_EXTENSION_DESCRIPTION__",
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "background": {
    "service_worker": "sw.js",
    "type": "module"
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "default_locale": "en",
  "permissions": [
    "cookies",
    "tabs",
    "activeTab",
    "history",
    "favicon",
    "search",
    "storage",
    "unlimitedStorage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "_favicon/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": [
        "*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}