TwoSlash: An OpenAI ChatGPT Chrome Extension

TwoSlash: An OpenAI ChatGPT Chrome Extension

Type '//ai' in any text field on your browser and unleash the power of ChatGPT AI.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.0.7",
  "description": "Type '//ai' in any text field on your browser and unleash the power of ChatGPT AI.",
  "manifest_version": 3,
  "name": "TwoSlash: An OpenAI ChatGPT Chrome Extension",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/logo.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/logo.png",
      "24": "images/logo.png",
      "32": "images/logo.png"
    },
    "default_popup": "index.html"
  },
  "icons": {
    "16": "images/logo.png",
    "32": "images/logo.png",
    "48": "images/logo.png",
    "128": "images/logo.png"
  }
}