Nozbe Extension

Nozbe Extension

Manage your Nozbe projects with chrome browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Nozbe Extension",
  "description": "Manage your Nozbe projects with chrome browser",
  "version": "0.0.2",
  "browser_action": {
    "default_icon": "icons/nozbe.png",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "scripts": [
      "options/login.js"
    ]
  },
  "options_page": "options/options.html",
  "permissions": [
    "storage",
    "identity"
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+N"
      }
    }
  }
}