Desmos Sketches Gallery Download

Desmos Sketches Gallery Download

Download the gallery of Desmos sketches (unofficial)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Desmos Sketches Gallery Download",
  "manifest_version": 3,
  "description": "Download the gallery of Desmos sketches (unofficial)",
  "version": "1.0.1",
  "icons": {
    "32": "icons/32x32.png",
    "64": "icons/64x64.png",
    "128": "icons/128x128.png"
  },
  "options_page": "settings/settings.html",
  "action": {
    "default_title": "Desmos Gallery Download",
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "activeTab",
    "tabs"
  ],
  "background": {
    "service_worker": "Background-Service-Worker.js"
  },
  "content_scripts": [
    {
      "js": [
        "jszip.min.js",
        "Foreground-Content.js"
      ],
      "matches": [
        "https://teacher.desmos.com/dashboard/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "galleryTemplate/style.css",
        "galleryTemplate/index.html",
        "galleryTemplate/script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}