ChatGPT Read It!

ChatGPT Read It!

Experience interactive ChatGPT communication on a whole new level with ChatGPT Read It that converts text into speech.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ChatGPT Read It!",
  "description": "Experience interactive ChatGPT communication on a whole new level with ChatGPT Read It that converts text into speech.",
  "version": "1.0",
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "action": {
    "default_icon": {
      "16": "img/ico16.png",
      "48": "img/ico48.png",
      "128": "img/ico128.png"
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://chat.openai.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}