Fantastic Start

Fantastic Start

Have a better start to the internet! The best replacement for the new tab page. More info: www.fantastic-start.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Fantastic Start",
  "short_name": "www.fantastic-start.com",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "Have a better start to the internet! The best replacement for the new tab page. More info: www.fantastic-start.com",
  "icons": {
    "16": "icon.png",
    "48": "icon_big.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "chrome_url_overrides": {
    "newtab": "start.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "https://*.fantastic-start.com/*",
        "https://fantastic-start.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "chrome_settings_overrides": {
    "homepage": "http://www.fantastic-start.com",
    "search_provider": {
      "encoding": "UTF-8",
      "favicon_url": "http://www.fantastic-start.com/images/favicon.png",
      "is_default": true,
      "keyword": "fantastic-start.com",
      "name": "Fantastic Start Search",
      "search_url": "http://www.fantastic-start.com/search?q={searchTerms}"
    }
  },
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "permissions": [
    "tabs",
    "contentSettings"
  ]
}