New Tab Master

New Tab Master

Bring back that good old new-tab page.

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 Master",
  "short_name": "NewTabMaster",
  "version": "0.1.6",
  "description": "Bring back that good old new-tab page.",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "author": "Zeal Mayfield",
  "background": {
    "page": "bg/bg.html",
    "persistent": true
  },
  "chrome_url_overrides": {
    "newtab": "override/override.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "inject/inject.css"
      ],
      "js": [
        "inject/inject.js"
      ]
    }
  ],
  "offline_enabled": true,
  "permissions": [
    "<all_urls>",
    "chrome://favicon/*",
    "background",
    "tabs",
    "topSites",
    "management",
    "bookmarks",
    "storage",
    "unlimitedStorage",
    "webNavigation",
    "history",
    "geolocation"
  ]
}