Keep ChatGPT

Keep ChatGPT

Keep ChatGPT online, make it never expire

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Keep ChatGPT",
  "description": "Keep ChatGPT online, make it never expire",
  "version": "0.0.0.3",
  "manifest_version": 3,
  "icons": {
    "16": "/images/icon-16.png",
    "32": "/images/icon-32.png",
    "48": "/images/icon-48.png",
    "192": "/images/icon-192.png"
  },
  "action": {
    "default_icon": {
      "16": "/images/icon-16.png",
      "32": "/images/icon-32.png",
      "48": "/images/icon-48.png",
      "128": "/images/icon-192.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "webRequest",
    "ws://*/*",
    "wss://*/*"
  ]
}