Cheminventory Helper

Cheminventory Helper

Cheminventory Helper is a Chrome extension designed exclusively to streamline the process of exporting order data from the…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Cheminventory Helper",
  "version": "1.0",
  "permissions": [],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://app.cheminventory.net/currentorders"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {},
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; worker-src 'self'"
  }
}