Python Tutor - Wiingy

Python Tutor - Wiingy

Chrome extension to find a python tutor.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Python Tutor - Wiingy",
  "version": "1.1",
  "description": "Chrome extension to find a python tutor.",
  "content_scripts": [
    {
      "matches": [
        "*://chat.openai.com//*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon16.png",
      "48": "icon48.png",
      "128": "icon128.png"
    }
  },
  "host_permissions": [
    "*://chat.openai.com//*"
  ]
}