Examine source code of Whatsapp Web Designer

Inspect and view changes in Whatsapp Web Designer 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Whatsapp Web Designer",
  "description": "Choose a theme, put background images & enjoy a nice view while messaging",
  "version": "1.106",
  "manifest_version": 3,
  "action": {
    "default_popup": "popup/actions.html",
    "default_icon": {
      "16": "assets/default_icon/WhatsApp_icon-16.png",
      "32": "assets/default_icon/WhatsApp_icon-32.png",
      "48": "assets/default_icon/WhatsApp_icon-48.png",
      "128": "assets/default_icon/WhatsApp_icon-128.png"
    },
    "default_title": "Whatsapp Web Designer"
  },
  "author": "omarg60@yahoo.com , goosemugger@gmail.com",
  "short_name": "WAW Designer",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "content_scripts/themes_content_script.js",
        "content_scripts/useful_functions.js",
        "content_scripts/intializations.js",
        "content_scripts/wait_mode.js",
        "content_scripts/main_mode.js",
        "content_scripts/communications.js",
        "content_scripts/run.js"
      ],
      "matches": [
        "https://web.whatsapp.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "service_worker": "service_worker_scripts/main_service_worker.js"
  },
  "icons": {
    "16": "assets/default_icon/WhatsApp_icon-16.png",
    "32": "assets/default_icon/WhatsApp_icon-32.png",
    "48": "assets/default_icon/WhatsApp_icon-48.png",
    "128": "assets/default_icon/WhatsApp_icon-128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content_scripts/styles.css"
      ],
      "matches": [
        "https://web.whatsapp.com/*"
      ]
    }
  ]
}