Examine source code of AskChatGPT

Inspect and view changes in AskChatGPT 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
{
  "name": "AskChatGPT",
  "description": "Use ChatGPT as you browse the web. AskChatGPT provide answers and useful info about the pages you're viewing. Think of it as your personal browser assistant",
  "version": "1.0",
  "manifest_version": 2,
  "author": "admin@pushbuild.com",
  "browser_action": {
    "default_popup": "/views/popup.html"
  },
  "background": {
    "scripts": [
      "/assets/js/browser-polyfill.min.js",
      "/scripts/background.firefox.js"
    ]
  },
  "permissions": [
    "storage",
    "scripting",
    "activeTab",
    "https://*.openai.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/assets/js/browser-polyfill.min.js",
        "/scripts/content.js"
      ]
    }
  ],
  "icons": {
    "16": "/assets/icons/icon16.png",
    "32": "/assets/icons/icon32.png",
    "48": "/assets/icons/icon48.png",
    "128": "/assets/icons/icon128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{d60713c0-cc04-476f-a6e7-1ccec6693685}"
    }
  }
}