WhatsGo

WhatsGo

WhatsGo - WhatsApp Customer Notification

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "minimum_chrome_version": "93",
  "description": "__MSG_appDesc__",
  "short_name": "WhatsGo",
  "version": "3.1",
  "default_locale": "en",
  "icons": {
    "32": "icons/logo-32.png",
    "64": "icons/logo-64.png"
  },
  "background": {
    "service_worker": "dist/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://web.whatsapp.com/*"
      ],
      "css": [
        "dist/content.css"
      ],
      "js": [
        "vendor/jquery.min.js",
        "dist/content.js"
      ],
      "run_at": "document_end",
      "persistent": false,
      "match_about_blank": true,
      "all_frames": false
    }
  ],
  "action": {
    "browser_style": true,
    "default_title": "WhatsGo",
    "default_popup": "index.html",
    "default_icon": {
      "32": "icons/logo-32.png",
      "64": "icons/logo-64.png"
    }
  },
  "permissions": [
    "identity",
    "contextMenus",
    "scripting"
  ],
  "host_permissions": [
    "*://*.googleapis.com/*",
    "*://*.google.com/*",
    "*://web.whatsapp.com/*"
  ]
}