ODOO TopBar color

ODOO TopBar color

Change color of topbar on odoo.com hosted website according to the active company.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ODOO TopBar color",
  "version": "0.2",
  "description": "Change color of topbar on odoo.com hosted website according to the active company.",
  "permissions": [
    "https://*.odoo.com/*",
    "activeTab",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.odoo.com/*"
      ],
      "run_at": "document_end",
      "css": [
        "css/anim.css"
      ],
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "contentScript.js",
    "css/anim.css"
  ],
  "options_page": "options.html",
  "icons": {
    "16": "images/get_started16.png",
    "32": "images/get_started32.png",
    "48": "images/get_started48.png",
    "128": "images/get_started128.png"
  },
  "manifest_version": 2
}