Nuxeo Dev Tools

Nuxeo Dev Tools

A handy collection of shortcuts and tools for the Nuxeo developer

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Nuxeo Dev Tools",
  "version": "3.1.5",
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "description": "A handy collection of shortcuts and tools for the Nuxeo developer",
  "icons": {
    "16": "images/nuxeo-16.png",
    "128": "images/nuxeo-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage",
    "cookies",
    "tabs",
    "http://*/*",
    "https://*/*",
    "activeTab",
    "https://ajax.googleapis.com/",
    "notifications",
    "background",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking",
    "https://app.prodpad.com/"
  ],
  "omnibox": {
    "keyword": "nx"
  },
  "page_action": {
    "default_icon": {
      "19": "images/nuxeo-19.png",
      "38": "images/nuxeo-38.png"
    },
    "default_title": "Nuxeo Dev Tools",
    "default_popup": "popup.html"
  }
}