New Tab Options

New Tab Options

Set URL for new tabs. Optionally prevent new tabs/windows being created, pages from going to a new domain, hide ads in Google search

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "New Tab Options",
  "description": "Set URL for new tabs. Optionally prevent new tabs/windows being created, pages from going to a new domain, hide ads in Google search",
  "version": "0.0.0.7",
  "icons": {
    "128": "iconOff128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_title": "New Tab Options",
    "default_icon": "iconOff128.png"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "permissions": [
    "tabs",
    "activeTab",
    "contextMenus",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ]
}