nexTab

nexTab

nexTab is a chrome new-tab extension to help your daily workflow!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "nexTab",
  "description": "nexTab is a chrome new-tab extension to help your daily workflow!",
  "version": "4.1.5",
  "icons": {
    "48": "img/logo.png"
  },
  "permissions": [
    "storage"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "offline_enabled": true,
  "browser_action": {
    "default_icon": "img/logo.png",
    "default_popup": "pages/popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "chrome_url_overrides": {
    "newtab": "pages/index.html"
  }
}