Custom New Tabs

Custom New Tabs

Load any URL you want when a new tab is opened. CNT is the only add-on to place the focus intelligently on the chosen web page (like a search engine's search box) or in the URL bar!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Custom New Tab",
  "version": "4.8resigned1",
  "homepage_url": "https://github.com/deadmund/Custom-New-Tab/wiki",
  "description": "CNT allows the user to specify any website (URL) to be opened in new tabs by default instead of the about:newtab page.",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "55.0"
    }
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "icons": {
    "32": "cnt_icon_32.png",
    "48": "cnt_icon_48.png",
    "64": "cnt_icon_64.png"
  },
  "background": {
    "scripts": [
      "cnt-main-bg-script.js"
    ]
  },
  "options_ui": {
    "page": "prefs.html"
  }
}