Message Signature for Whatsapp Web

Message Signature for Whatsapp Web

Create signatures for each user of your Whatsapp Web.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.2",
  "name": "Message Signature for Whatsapp Web",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "js": [
        "injector.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "resources": [
        "script.js"
      ]
    }
  ],
  "action": {
    "default_title": "Message Signature for Whatsapp Web",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/16.png",
    "38": "icons/38.png",
    "64": "icons/64.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "storage"
  ]
}