ChatGPT for Quora

This is an Open-AI ChatGPT powerful tool to give you the AI magic on Quora for marketing promotion.
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": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "icons": {
    "128": "icons/logo.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_title": "GPT Popup",
    "default_icon": {
      "128": "icons/logo.png"
    }
  },
  "commands": {
    "toggle_ChatGPT": {
      "description": "Run ChatGPT on the current page.",
      "suggested_key": {
        "chromeos": "Ctrl+M",
        "default": "Ctrl+M",
        "linux": "Ctrl+M",
        "mac": "Command+M",
        "windows": "Ctrl+M"
      }
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.quora.com/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "css": [],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.openai.com/*"
      ],
      "js": [
        "js/chatgpt-script.js"
      ],
      "css": [],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.gptplus.io/*"
      ],
      "js": [
        "js/gptplus-script.js"
      ],
      "css": [],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*"
      ],
      "matches": [
        "*://*.quora.com/*",
        "*://*.openai.com/*",
        "*://*.linkedradar.com/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "*://*.quora.com/*",
    "*://*.openai.com/*",
    "*://*.linkedradar.com/*",
    "*://*.gptplus.io/*"
  ],
  "version": "1.2.9",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}