GoToWebinar & GoToMeeting Download Recordings

GoToWebinar & GoToMeeting Download Recordings

Now you can download recordings from GoToMeeting and GoToWebinar with a single click of a button. After installing this software,…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GoToWebinar & GoToMeeting Download Recordings",
  "version": "13.0",
  "description": "",
  "icons": {
    "48": "icons/icon.png"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "downloads"
  ],
  "action": {
    "default_title": "Click to show an alert"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "grid.user.js",
        "cam_script.js",
        "/images/howto.jpg"
      ],
      "matches": [
        "https://meet.google.com/*"
      ]
    },
    {
      "resources": [
        "/images/record.png",
        "/images/recimage.png",
        "/images/howto.jpg",
        "/images/download.png"
      ],
      "matches": [
        "https://*.zoom.us/*",
        "https://*.zoomgov.com/*",
        "https://meet.google.com/*",
        "https://*.gotomeet.me/*",
        "https://*.gotowebinar.com/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.min.js",
        "main.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ]
}