Examine source code of Asistente GPT Mexico

Inspect and view changes in Asistente GPT Mexico 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": 2,
  "name": "Asistente GPT Mexico",
  "version": "1.1",
  "description": "Complemento gratuito, sin publicidad, rápido para ChatGPT en la comunidad mexicana con enlaces destacados.",
  "browser_action": {
    "default_popup": "new_tab.html",
    "default_icon": {
      "16": "icons/icon16.png",
      "48": "icons/icon48.png",
      "128": "icons/icon128.png"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "chrome_url_overrides": {
    "newtab": "new_tab.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat-gpt-mexico.mx/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{2fe2f5c1-0fdf-4033-87d5-98d27cf1384f}"
    }
  }
}