Examine source code of GPT Quicker

Inspect and view changes in GPT Quicker 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GPT Quicker",
  "description": "Excellence GPT assistant with useful extensions and powerful prompts. Use ChatGPT, Claude, Bard, Bing anywhere online.",
  "default_locale": "en",
  "version": "1.0.1",
  "icons": {
    "16": "src/logo.png",
    "32": "src/logo.png",
    "48": "src/logo.png",
    "128": "src/logo.png"
  },
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "action": {
    "default_tab": "app.html",
    "default_title": "GPT Quicker"
  },
  "host_permissions": [
    "*://*.bing.com/",
    "https://*.openai.com/",
    "https://bard.google.com/",
    "https://*.chathub.gg/",
    "https://*.claude.ai/"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "resources": [
        "content.html",
        "src/logo.png",
        "src/icon/iconfont.css",
        "src/icon/iconfont.js",
        "src/icon/iconfont.woff",
        "src/icon/iconfont.woff2",
        "src/icon/iconfont.ttf",
        "src/icon/iconfont.svg",
        "src/content/mail/icon/logo.svg",
        "src/font.css",
        "src/icon/Google.svg",
        "src/app/asset/PaperPlaneRight-r.svg",
        "src/app/asset/status-active.svg",
        "src/icon/*",
        "content-assets/*",
        "public/*"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "resources": [
        "assets/ByeWind-70-3ac6f768.png",
        "assets/Inter-Regular-d612f121.woff2",
        "assets/Inter-Regular-ef1f23c0.woff",
        "assets/Inter-Medium-1b498b95.woff2",
        "assets/Inter-Medium-53deda46.woff",
        "assets/Inter-SemiBold-15226129.woff2",
        "assets/Inter-SemiBold-653fed7a.woff",
        "assets/Inter-Bold-c63158ba.woff2",
        "assets/Inter-Bold-3e242080.woff",
        "assets/Inter-roman.var-17fe38ab.woff2",
        "assets/use-scroll-to-bottom-c74dd19e.js",
        "assets/types-3b693ffb.js",
        "assets/page.tsx-2f4ba45c.js",
        "assets/use-scroll-to-bottom-47e10628.css",
        "assets/page-bab6ddfd.css"
      ],
      "use_dynamic_url": true
    }
  ],
  "optional_host_permissions": [
    "wss://*.bing.com/"
  ],
  "permissions": [
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "storage",
    "unlimitedStorage",
    "declarativeNetRequestWithHostAccess",
    "activeTab"
  ],
  "content_scripts": [
    {
      "js": [
        "assets/page.tsx-loader-9845ef15.js"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "commands": {
    "open-app": {
      "suggested_key": {
        "default": "Alt+J",
        "windows": "Alt+J",
        "linux": "Alt+J",
        "mac": "Command+J"
      },
      "description": "Open ChatHub app"
    }
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_bing",
        "enabled": true,
        "path": "src/rules/bing.json"
      },
      {
        "id": "sample_rules",
        "enabled": true,
        "path": "sample_rules.json"
      }
    ]
  }
}