Examine source code of Web Presenter

Inspect and view changes in Web Presenter 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": "Web Presenter",
  "description": "No screenshots for slide anymore. Present your website directly.",
  "version": "1.0.0",
  "manifest_version": 3,
  "minimum_chrome_version": "92",
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "img/una-bird-16.png",
      "32": "img/una-bird-32.png",
      "64": "img/una-bird-64.png",
      "128": "img/una-bird-128.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "js/contentscript.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "web_accessible_resources/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}