Zoom Bookmarks

Zoom Bookmarks

Store your most used Zoom links and join your online classes with ease.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "browser_action": {
    "default_icon": "icons/icon19.png",
    "default_popup": "src/browser_action/browser_action.html",
    "default_title": "Zoom Bookmarks"
  },
  "default_locale": "en",
  "description": "Store your most used Zoom links and join your online classes with ease.",
  "homepage_url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
  "icons": {
    "16": "icons/icon16.png",
    "19": "icons/icon19.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "background": {
    "scripts": [
      "src/background.js"
    ]
  },
  "manifest_version": 2,
  "name": "Zoom Bookmarks",
  "permissions": [
    "clipboardWrite",
    "tabs",
    "background",
    "storage"
  ],
  "version": "0.0.3",
  "content_scripts": [
    {
      "matches": [
        "*://*.zoom.us/j/*",
        "*://*.zoom.us/s/*",
        "*://*.zoom.us/postattendee*",
        "*://*.zoom.us/wc/leave*"
      ],
      "js": [
        "src/content.js"
      ],
      "css": [
        "src/content.css"
      ]
    }
  ]
}