Examine source code of Google Meet 點名插件

Inspect and view changes in Google Meet 點名插件 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": 2,
  "name": "Google Meet 點名插件",
  "version": "1.0.2",
  "description": "Google Meet 點名插件",
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "128": "icon.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "js": [
        "execute.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}