Reply Buttons

Reply Buttons

Simply define your own reply buttons to answer easier and faster

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Reply Buttons",
  "version": "1.2.6",
  "description": "Simply define your own reply buttons to answer easier and faster",
  "icons": {
    "16": "icons/robot16.png",
    "64": "icons/robot64.png",
    "128": "icons/robot128.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "buttons/buttons.js"
      ],
      "matches": [
        "https://web.whatsapp.com/"
      ]
    }
  ],
  "action": {
    "default_popup": "settings/settings.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "buttons/buttons.css",
        "icons/robot64.png"
      ],
      "matches": [
        "https://web.whatsapp.com/*"
      ]
    }
  ]
}