Examine source code of ChatGPT: AI Copilot for Web & YouTube

Inspect and view changes in ChatGPT: AI Copilot for Web & YouTube 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": "ChatGPT: AI Copilot for Web & YouTube",
  "description": "Simply click the copilot and ask while you are searching from YouTube videos, PDFs or Web",
  "version": "3.8.17.1644",
  "icons": {
    "16": "/images/icon/icon-saved-16.png",
    "32": "/images/icon/icon-saved-32.png",
    "48": "/images/icon/icon-saved-48.png",
    "128": "/images/icon/icon-saved-128.png"
  },
  "action": {
    "default_title": "Save to LINER",
    "default_icon": {
      "16": "/images/icon/icon-saved-16.png",
      "32": "/images/icon/icon-saved-32.png",
      "48": "/images/icon/icon-saved-48.png",
      "128": "/images/icon/icon-saved-128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/liner-core.be.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://www.youtube-nocookie.com/embed/*",
        "https://www.youtube.com/embed/*"
      ],
      "exclude_matches": [
        "https://www.youtube.com/embed/?*",
        "https://www.youtube.com/embed?*"
      ],
      "all_frames": true,
      "js": [
        "/liner-core.be.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://getliner.com/pdf/checksum/*",
        "https://*.getliner.com/pdf/checksum/*"
      ],
      "css": [
        "/pdfCSS.css"
      ]
    }
  ],
  "background": {
    "service_worker": "backgrounds.js"
  },
  "permissions": [
    "tabs",
    "clipboardWrite",
    "storage",
    "scripting",
    "contextMenus",
    "cookies"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "options_page": "/options/options.html",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}