Penbox for Brokers

Penbox for Brokers

The Penbox extension for Google Chrome allows you keep your Penbox data always at hand!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extSummary__",
  "default_locale": "en",
  "author": "Penbox <[email protected]>",
  "homepage_url": "https://www.penbox.io",
  "manifest_version": 2,
  "icons": {
    "128": "icons/icon.png"
  },
  "permissions": [
    "activeTab",
    "notifications",
    "storage",
    "webNavigation",
    "https://*.auth0.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://secure.brokercloud.app/*",
        "http://demo.brio.be/*",
        "https://prod.brio.be/*",
        "https://prod.brioplus.be/*"
      ],
      "css": [
        "page.css"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Penbox",
    "default_icon": "icons/icon.png"
  },
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "web_accessible_resources": [
    "main.css",
    "page.css",
    "fonts/*",
    "icons/*",
    "icons/*"
  ],
  "version": "2.38.5"
}