N-bot - Google Meet Online class Attender

N-bot - Google Meet Online class Attender

By Nithin S

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "N-bot - Google Meet Online class Attender",
  "version": "2.3.0",
  "description": "By Nithin S",
  "icons": {
    "128": "icon/icon.png"
  },
  "action": {
    "default_icon": "icon/icon.png",
    "default_title": "N-bot - Google Meet Online class Attender",
    "default_popup": "html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://meet.google.com/*"
      ],
      "css": [
        "css/nbot.css"
      ],
      "js": [
        "WebRTC/videomain.js",
        "WebRTC/recordrtc.js",
        "WebRTC/adapter.js",
        "WebRTC/video.js",
        "WebRTC/ts.js",
        "WebRTC/jquery.js",
        "js/contentscriptMeet.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "cookies"
  ],
  "host_permissions": [
    "https://nbot.live/"
  ],
  "background": {
    "service_worker": "js/background.js"
  }
}