Examine source code of Pr@All

Inspect and view changes in Pr@All source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Pr@All",
  "version": "2.0.0",
  "description": "Simple extension to mention all members of the opened WhatsApp group.",
  "permissions": [
    "activeTab",
    "scripting",
    "clipboardWrite"
  ],
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/icon-16.png",
      "32": "images/icon-32.png",
      "48": "images/icon-48.png",
      "128": "images/icon-128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://web.whatsapp.com/"
      ],
      "js": [
        "content.js",
        "copyscript.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "devVijay@Everyone"
    }
  }
}