Work with gpt- ChatGPT based InstantPrompt

Work with gpt- ChatGPT based InstantPrompt

Say goodbye to wasted time and productivity! With WorkWithGPT, generating responses on the same page is as simple as a right-click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "__MSG_appDesc__",
  "version": "4.2.4",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "default_locale": "en",
  "background": {
    "service_worker": "background.js"
  },
  "oauth2": {
    "client_id": "459308947982-cofohi3ol0ufc2tr1onb5et5716qss1g.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "permissions": [
    "contextMenus",
    "storage",
    "cookies",
    "alarms"
  ],
  "host_permissions": [
    "https://*.openai.com/",
    "<all_urls>"
  ],
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": []
    }
  ]
}