線上會議自動接受工具

線上會議自動接受工具

線上會議自動接受所有加入者請求,點擊圖示可以開啟夥伴模式。4xDev(4-x.tw)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "線上會議自動接受工具",
  "short_name": "AutoAdmit",
  "description": "線上會議自動接受所有加入者請求,點擊圖示可以開啟夥伴模式。4xDev(4-x.tw)",
  "version": "3.0",
  "action": {
    "default_title": "AutoGM",
    "default_icon": "icon.png"
  },
  "permissions": [
    "tabs"
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://meet.google.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}