New Tab Changer

New Tab Changer

Load a custom web page or url in a new tab. Fast, light, and easy to use.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "New Tab Changer",
  "version": "2.3",
  "manifest_version": 3,
  "description": "Load a custom web page or url in a new tab. Fast, light, and easy to use.",
  "background": {
    "service_worker": "scripts/background.js"
  },
  "action": {
    "default_icon": "images/16x16.png",
    "default_title": "New Tab Changer"
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "options_page": "options.html",
  "permissions": [
    "activeTab",
    "tabs",
    "storage",
    "browsingData"
  ],
  "host_permissions": [
    "http://www.dummysoftware.com/*",
    "https://www.dummysoftware.com/*"
  ],
  "icons": {
    "48": "images/48x48.png",
    "128": "images/128x128.png"
  },
  "incognito": "split",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}