ChatFox - OpenAI ChatGPT for IG & TW & LI

The Open-AI ChatGPT powerful tool to give you the AI magic on Instagram, Twitter, LinkedIn for marketing promotion.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "default_locale": "en",
  "version": "1.0.0",
  "homepage_url": "https://chatfox.extensionsfox.com/",
  "action": {
    "default_icon": "./assets/icon-512.png",
    "default_popup": "./dist/popup/index.html"
  },
  "icons": {
    "16": "./assets/icon-512.png",
    "48": "./assets/icon-512.png",
    "128": "./assets/icon-512.png"
  },
  "commands": {
    "toggle_chatFOX": {
      "suggested_key": {
        "default": "Ctrl+M",
        "chromeos": "Ctrl+M",
        "linux": "Ctrl+M",
        "mac": "Command+M",
        "windows": "Ctrl+M"
      },
      "description": "Run ChatFox on the current page."
    }
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "./dist/background/index.mjs"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./dist/contentScripts/index.global.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "dist/contentScripts/style.css",
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}