Dark Tab

Dark Tab

Replace the new tab page with a dark, high-quality, minimalist user interface that pairs nicely with dark themes.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Dark Tab",
  "description": "Replace the new tab page with a dark, high-quality, minimalist user interface that pairs nicely with dark themes.",
  "version": "1.3",
  "author": "Bhavik Raval",
  "manifest_version": 2,
  "icons": {
    "16": "light-on-16.png",
    "48": "light-on-48.png",
    "128": "light-on-128.png"
  },
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "light-on-16.png",
    "default_title": "Dark Tab"
  },
  "chrome_url_overrides": {
    "newtab": "newtab.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "http://api.unsplash.com/*"
  ]
}