MONI

MONI

Connecting WhatsApp & monday.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "short_name": "MONI",
  "name": "MONI",
  "version": "1.0.22",
  "description": "Connecting WhatsApp & monday.com",
  "permissions": [
    "tabs",
    "storage",
    "unlimitedStorage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.monday.com/*"
      ],
      "js": [
        "loader.js"
      ]
    }
  ],
  "background": {
    "service_worker": "serviceworker.js"
  },
  "icons": {
    "16": "imgs/16b.png",
    "32": "imgs/32b.png",
    "128": "imgs/128b.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/imgs/*.png",
        "*.js",
        "/modules/*.js",
        "/modules/*.html",
        "*.json"
      ],
      "matches": [
        "https://*.monday.com/*"
      ]
    }
  ]
}