New Tab Redirect

New Tab Redirect

Allows a user to provide the URL of the page that loads in a new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "New Tab Redirect",
  "short_name": "NTR!",
  "description": "Allows a user to provide the URL of the page that loads in a new tab.",
  "version": "3.1.6",
  "background": {
    "service_worker": "js/background.js"
  },
  "options_page": "options.html",
  "chrome_url_overrides": {
    "newtab": "main.html"
  },
  "permissions": [
    "storage",
    "favicon"
  ],
  "host_permissions": [
    "file:///",
    "file://",
    "*://*"
  ],
  "optional_permissions": [
    "tabs",
    "topSites",
    "management",
    "bookmarks"
  ],
  "icons": {
    "19": "images/icon19.png",
    "128": "images/icon128.png",
    "200": "images/icon200.png"
  },
  "incognito": "split",
  "minimum_chrome_version": "89"
}