Blank New Tab

Blank New Tab

Minimalists rejoice! Open a new tab in Chrome and see nothing! This extension allows you to just get a blank page with your curser…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Blank New Tab",
  "version": "1.1.0",
  "browser_action": {
    "default_icon": {
      "16": "img/icon16.png",
      "24": "img/icon24.png",
      "32": "img/icon32.png",
      "48": "img/icon48.png",
      "128": "img/icon128.png",
      "256": "img/icon256.png",
      "512": "img/icon512.png"
    },
    "default_title": "Blank New Tab"
  },
  "icons": {
    "16": "img/icon16.png",
    "24": "img/icon24.png",
    "32": "img/icon32.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png",
    "256": "img/icon256.png",
    "512": "img/icon512.png"
  },
  "chrome_url_overrides": {
    "newtab": "html/newtab.html"
  }
}