Examine source code of Learn Coding with ChatGPT

Inspect and view changes in Learn Coding with ChatGPT 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
{
  "manifest_version": 3,
  "name": "Learn Coding with ChatGPT",
  "version": "0.1.0",
  "description": "Display coding tips generated by ChatGPT for every new tab.",
  "icons": {
    "16": "icons/logo.png",
    "48": "icons/logo.png",
    "128": "icons/logo.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_title": "color-background",
    "default_icon": "icons/logo.png"
  },
  "chrome_url_overrides": {
    "newtab": "main.html"
  },
  "permissions": [
    "storage"
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self'; style-src 'self' 'unsafe-inline' 'unsafe-hashes'; object-src 'self'; img-src 'self' data:;"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}