WAExpresso - BETA Release

WAExpresso - BETA Release

Beta channel. Send personalized messages to your customer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "manifest_version": 3,
  "description": "__MSG_extDesc__",
  "version": "1.4.1",
  "default_locale": "en",
  "homepage_url": "https://www.waexpresso.com",
  "externally_connectable": {
    "matches": [
      "*://waexpresso.com/*",
      "*://*.waexpresso.cf/*",
      "*://*.waexpresso.tk/*"
    ]
  },
  "background": {
    "service_worker": "javascript/background.js"
  },
  "action": {
    "default_icon": "images/icon48.png",
    "default_title": "__MSG_extName__",
    "default_popup": "views/popup.html"
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "css": [],
      "js": [
        "javascript/lib/jquery-3.5.0.min.js",
        "javascript/wa.js",
        "javascript/wa_inject_notification.js",
        "javascript/common.js"
      ],
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "contextMenus",
    "webRequest"
  ],
  "host_permissions": [
    "*://*.whatsapp.com/*",
    "*://*.waexpresso.com/*",
    "*://*.waexpresso.cf/*",
    "*://*.waexpresso.tk/*"
  ],
  "commands": {
    "toggle-feature": {
      "suggested_key": {
        "default": "Ctrl+Shift+W"
      },
      "description": "Send a 'toggle-feature' event"
    },
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+W",
        "mac": "MacCtrl+Shift+W"
      }
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/_locales/*",
        "/images/*",
        "/lang/*",
        "/javascript/wa_inject_notification.js",
        "/javascript/common.js",
        "/javascript/conf.js"
      ],
      "matches": [
        "https://web.whatsapp.com/*"
      ]
    }
  ]
}