WA Space Lite

WA Space Lite

Send personalized messages to your clients with our extension.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "WA Space Lite",
  "version": "1.0.1",
  "author": "creativeOs",
  "description": "Send personalized messages to your clients with our extension.",
  "icons": {
    "16": "icons/icon.png",
    "32": "icons/icon.png",
    "48": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "WA Space"
  },
  "content_scripts": [
    {
      "js": [
        "/js/content.js"
      ],
      "matches": [
        "*://*.whatsapp.com/*"
      ]
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "https://openfpcdn.io/*",
    "https://api.serverwapi.com/*",
    "https://api.serverwapi.com:441/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.whatsapp.com/*",
      "https://api.serverwapi.com/*",
      "https://api.serverwapi.com:441/*"
    ]
  },
  "content_security_policy": {
    "extension_pages": "default-src 'self'; connect-src 'self' https://api.serverwapi.com:441; script-src 'self'; object-src 'self'; style-src 'self' 'unsafe-inline'",
    "sandbox": "sandbox allow-scripts"
  },
  "minimum_chrome_version": "88",
  "permissions": [
    "scripting",
    "browsingData",
    "background",
    "declarativeNetRequest"
  ],
  "oauth2": {
    "client_id": "xxxxxxx",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "web_accessible_resources": [
    {
      "resources": [
        "js/*",
        "/js/*",
        "https://openfpcdn.io/fingerprintjs/v3"
      ],
      "matches": [
        "https://*.whatsapp.com/*"
      ]
    }
  ]
}