ChatGPT Pro - Advanced Features

ChatGPT Pro - Advanced Features

Chrome extension for ChatGPT with Advanced features like, Speech-to-Text, Pick Text, Saved Prompt, Prefix & Suffix prompts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ChatGPT Pro - Advanced Features",
  "version": "1.0.1",
  "description": "Chrome extension for ChatGPT with Advanced features like, Speech-to-Text, Pick Text, Saved Prompt, Prefix & Suffix prompts",
  "action": {
    "default_popup": "index.html",
    "default_icon": {
      "64": "images/icons8-chatgpt-64.png",
      "128": "images/icons8-chatgpt-128.png",
      "256": "images/icons8-chatgpt-256.png",
      "512": "images/icons8-chatgpt-512.png"
    }
  },
  "permissions": [
    "scripting",
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/bundle.js"
      ],
      "css": [
        "scripts/style.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "scripts/style.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}