Auto Desmos

Auto Desmos

An extension which brings ChatGPT's powers into Desmos

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Auto Desmos",
  "version": "0.0.1",
  "description": "An extension which brings ChatGPT's powers into Desmos",
  "permissions": [
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "https://www.desmos.com/calculator/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.desmos.com/calculator/*"
      ],
      "js": [
        "desmos.js",
        "chatgpt.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "Auto Desmos"
  },
  "icons": {
    "16": "icon16.jpg",
    "32": "icon32.jpg",
    "128": "icon128.jpg"
  }
}