Meeting URL Extractor on Calendar

Meeting URL Extractor on Calendar

Copies only the Google Meet URL from Google Calendar without any extra information by right-clicking once.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "1.0.2",
  "manifest_version": 3,
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "icons": {
    "16": "icon/icon_16.png",
    "48": "icon/icon_48.png",
    "128": "icon/icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/calendar/*"
      ],
      "js": [
        "js/jquery-3.6.1.min.js",
        "js/toastr.min.js",
        "js/content.js"
      ],
      "css": [
        "css/toastr.min.css"
      ]
    }
  ],
  "action": {
    "default_title": "__MSG_extName__",
    "default_popup": "html/popup.html",
    "default_icon": {
      "16": "icon/icon_16.png",
      "48": "icon/icon_48.png",
      "128": "icon/icon_128.png"
    }
  }
}