ProTab

ProTab

A smart and highly customizable new tab to improve your productivity | The best chrome extension for productivity

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ProTab",
  "description": "A smart and highly customizable new tab to improve your productivity | The best chrome extension for productivity",
  "version": "0.0.5",
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "omnibox": {
    "keyword": "p"
  },
  "manifest_version": 2,
  "permissions": [
    "<all_urls>",
    "background",
    "tabs",
    "storage",
    "alarms",
    "notifications",
    "contextMenus",
    "topSites",
    "chrome://favicon/",
    "unlimitedStorage",
    "activeTab",
    "identity",
    "identity.email"
  ],
  "browser_action": {
    "default_title": "Open ProTab Apps"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk=' https://ssl.google-analytics.com; object-src 'self';",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/bundle.js"
      ]
    }
  ],
  "commands": {
    "manage-tabs": {
      "suggested_key": {
        "default": "Alt+M"
      },
      "description": "Open tabs manager"
    },
    "commandbar": {
      "suggested_key": {
        "default": "Alt+N"
      },
      "description": "Open commandbar"
    }
  },
  "web_accessible_resources": [
    "index.html",
    "commandbar.html"
  ],
  "minimum_chrome_version": "23"
}