My Zoom Watchlist

My Zoom Watchlist

Owsome app that help people (specially students) who using Zoom to order their watchlist automatically without any effort. How to…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "My Zoom Watchlist",
  "version": "0.2.2.2",
  "author": [
    {
      "name": "Erez Shmueli"
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.zoom.us/rec/play/*",
        "https://zoom.us/rec/play/*"
      ],
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  }
}