Degen Reply

Degen Reply

Adds buttons to Twitter for easy replies using spintax and AI-generated responses.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Degen Reply",
  "version": "1.0.5",
  "description": "Adds buttons to Twitter for easy replies using spintax and AI-generated responses.",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://api.openai.com/",
    "https://api.reservoir.tools/"
  ],
  "optional_host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_popup": "options.html",
    "default_title": "Degen Reply"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://x.com/*"
      ],
      "js": [
        "content.js",
        "web3.min.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "19": "icon19.png",
    "32": "icon32.png",
    "38": "icon38.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}