New Tab Explorer — Explore the Web on New Tab

New Tab Explorer — Explore the Web on New Tab

Discover and explore new pages on the web when you open a new tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "New Tab Explorer — Explore the Web on New Tab",
  "version": "1.0.0",
  "author": "New Tab Explorer",
  "description": "Discover and explore new pages on the web when you open a new tab.",
  "permissions": [
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "<all_urls>",
    "storage"
  ],
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "icons/icon19.png",
      "38": "icons/icon38.png"
    },
    "default_title": "New Tab Explorer"
  },
  "background": {
    "scripts": [
      "js/lib/app.js",
      "js/lib/tab.js",
      "js/provider/uuidv4.js",
      "js/provider/axios.js",
      "js/provider/underscore.js",
      "js/lib/utils.js",
      "js/background.js"
    ]
  },
  "chrome_url_overrides": {
    "newtab": "html/newtab.html"
  }
}