Your New Tab Page

Your New Tab Page

Overrides the new tab page on Chrome with a more elegant and simple design.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Your New Tab Page",
  "description": "Overrides the new tab page on Chrome with a more elegant and simple design.",
  "version": "1.4",
  "manifest_version": 2,
  "incognito": "split",
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "permissions": [
    "topSites",
    "http://query.yahooapis.com/"
  ],
  "icons": {
    "16": "blank.gif",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "background": {
    "scripts": [
      "includes/jquery-1.10.2.min.js",
      "includes/bootstrap.min.js",
      "includes/events.js",
      "includes/ready.js"
    ]
  }
}