Useful New Tab Page

Useful New Tab Page

A useful new tab replacement.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Useful New Tab Page",
  "version": "2.0",
  "description": "A useful new tab replacement.",
  "permissions": [
    "bookmarks",
    "history",
    "topSites",
    "contextMenus",
    "storage",
    "tabs",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "jquery-3.1.1.min.js",
      "background.js"
    ]
  },
  "options_page": "options.html",
  "chrome_url_overrides": {
    "newtab": "MyNewTab.html"
  },
  "icons": {
    "16": "newtb_16.png",
    "32": "newtb_32.png",
    "48": "newtb_48.png",
    "128": "newtb_128.png"
  },
  "manifest_version": 2
}