Examine source code of Coursera Shareable Link

Inspect and view changes in Coursera Shareable Link source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Coursera Shareable Link",
  "description": "Get a shareable link from the Coursera submission page.",
  "version": "1.1",
  "manifest_version": 3,
  "devtools_page": "devtools.html",
  "permissions": [
    "scripting",
    "activeTab",
    "storage",
    "webRequest"
  ],
  "host_permissions": [
    "https://www.coursera.org/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "inject.js"
      ],
      "matches": [
        "https://www.coursera.org/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.coursera.org/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icon.jpeg",
      "48": "icon.jpeg",
      "128": "icon.jpeg"
    }
  }
}