ChatGPT Auto Refresh

ChatGPT Auto Refresh

The Chrome app would refresh the OpenAI GPT-3 chat website whenever an error occurs on the page. The app would monitor the page for…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ChatGPT Auto Refresh",
  "version": "1.1.0.3",
  "manifest_version": 3,
  "permissions": [
    "tabs",
    "activeTab",
    "webRequest",
    "scripting",
    "storage"
  ],
  "icons": {
    "128": "icon128.png"
  },
  "host_permissions": [
    "https://chat.openai.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/chat*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ]
}