ChatGPT Reader

ChatGPT Reader

ChatGPT Text to Speech Reader

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ChatGPT Reader",
  "description": "ChatGPT Text to Speech Reader",
  "version": "1.2.7",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://*.bing.com/*",
        "https://*.openai.com/*",
        "https://bard.google.com/*",
        "https://*.claude.ai/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": false,
      "match_about_blank": true
    }
  ],
  "permissions": [
    "storage"
  ],
  "action": {
    "default_icon": {
      "16": "/images/16.png",
      "32": "/images/32.png",
      "48": "/images/48.png",
      "128": "/images/128.png"
    }
  },
  "icons": {
    "16": "/images/16.png",
    "32": "/images/32.png",
    "48": "/images/48.png",
    "128": "/images/128.png"
  }
}