No-Bull New Tab

No-Bull New Tab

Minimal, easy to use and customisable 'New Tab' replacement.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.1",
  "name": "No-Bull New Tab",
  "short_name": "NoBullNewTab",
  "description": "Minimal, easy to use and customisable 'New Tab' replacement.",
  "author": "Matt Krins",
  "homepage_url": "https://github.com/mattkrins/",
  "permissions": [
    "sessions",
    "tabs",
    "storage"
  ],
  "chrome_url_overrides": {
    "newtab": "blank.html"
  },
  "options_page": "options.html",
  "browser_action": {
    "default_title": "No-Bull NewTab"
  },
  "background": {
    "scripts": [
      "blank.js"
    ]
  },
  "icons": {
    "16": "icons/icon16.png",
    "32": "icons/icon32.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "incognito": "split",
  "manifest_version": 2
}