Managebac Plus

Managebac Plus

Adds all kind of features to your Managebac account!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Managebac Plus",
  "version": "8.0",
  "description": "Adds all kind of features to your Managebac account!",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage",
    "https://*.managebac.com/*",
    "https://*.managebac.cn/*",
    "cookies"
  ],
  "background": {
    "scripts": [
      "injection/jquery.js",
      "background.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/managebacPlus16.png",
      "32": "images/managebacPlus32.png",
      "48": "images/managebacPlus48.png",
      "128": "images/managebacPlus128.png"
    }
  },
  "icons": {
    "16": "images/managebacPlus16.png",
    "32": "images/managebacPlus32.png",
    "48": "images/managebacPlus48.png",
    "128": "images/managebacPlus128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.managebac.com/*",
        "https://*.managebac.cn/*"
      ],
      "js": [
        "injection/jquery.js",
        "injection/main.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "manifest_version": 2
}