TwitterGPT - Respond to tweets with ChatGPT

TwitterGPT - Respond to tweets with ChatGPT

With this extensions you can get tweets drafted for you by AI

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "TwitterGPT - Respond to tweets with ChatGPT",
  "description": "With this extensions you can get tweets drafted for you by AI",
  "version": "1.3",
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "scripting",
    "tabs",
    "https://"
  ],
  "host_permissions": [
    "https://twitter.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*"
      ],
      "js": [
        "popup.js"
      ]
    }
  ]
}