Custom New Tab

Custom New Tab

Be able to change the new tab to any given URL

Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Custom New Tab",
  "description": "Be able to change the new tab to any given URL",
  "version": "1.3",
  "icons": {
    "128": "icon_128.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "options.html"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}