Odoo Utility

Odoo Utility

Simple shortcuts and tools to save time

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Odoo Utility",
  "version": "3.1",
  "description": "Simple shortcuts and tools to save time",
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/src/images/icon16.png",
      "32": "/src/images/icon32.png",
      "48": "/src/images/icon48.png",
      "128": "/src/images/icon128.png"
    }
  },
  "icons": {
    "16": "/src/images/icon16.png",
    "48": "/src/images/icon48.png",
    "128": "/src/images/icon128.png"
  },
  "author": "Droggol Infotech Private Limited",
  "background": {
    "service_worker": "/src/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/src/js/content.js"
      ],
      "css": [
        "/src/scss/content.css"
      ]
    }
  ],
  "offline_enabled": true,
  "options_page": "options.html",
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/src/js/page_script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}