Coursera Summary with ChatGPT and Take Notes

Coursera Summary with ChatGPT and Take Notes

Coursera videos transcript and summary with Chat GPT. Summary generator for Coursera videos.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "version": "1.0.4",
  "default_locale": "en",
  "manifest_version": 3,
  "icons": {
    "16": "logo.png",
    "32": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  },
  "host_permissions": [
    "https://*.coursera.org/*",
    "https://*.openai.com/*"
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "permissions": [
    "storage",
    "webRequest"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "16": "logo.png",
      "32": "logo.png",
      "48": "logo.png",
      "128": "logo.png",
      "300": "logo.png",
      "500": "logo.png"
    },
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "css": [
        "content-script.css",
        "static/css/index.css"
      ],
      "matches": [
        "https://*.coursera.org/*",
        "https://*.openai.com/*"
      ],
      "js": [
        "static/element-ui.js",
        "content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/manifest.json",
        "inject.js",
        "logo.png",
        "static/images/noteUI.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}