Answerbook

Answerbook

Companion app for Answerbook Enterprise

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Answerbook",
  "version": "1.1.94",
  "manifest_version": 2,
  "description": "Companion app for Answerbook Enterprise",
  "homepage_url": "http://answerbook.com",
  "icons": {
    "16": "icons/icon32.png",
    "48": "icons/icon96.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "page": "src/bg/background.html",
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icons/icon38.png",
    "default_title": "Answerbook",
    "default_popup": "src/browser_action/browser_action.html"
  },
  "permissions": [
    "background",
    "identity",
    "tabs",
    "storage",
    "notifications",
    "webRequest",
    "gcm",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://appfrontend.answerbook.com/static/*"
      ],
      "js": [
        "/js/inject.min.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "/icons/*.png"
  ],
  "nacl_modules": [
    {
      "path": "nacl/ab.nmf",
      "mime_type": "application/x-pnacl"
    }
  ]
}