Transmate: AI-powered Bulk Translator

Transmate: AI-powered Bulk Translator

Transmate provide bulk document processing capability to ChatGPT and Poe.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Transmate: AI-powered Bulk Translator",
  "description": "Transmate provide bulk document processing capability to ChatGPT and Poe.",
  "default_locale": "en",
  "version": "2.8.17",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "permissions": [
    "webRequest",
    "scripting",
    "storage",
    "tabs"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://chat.openai.com/*",
    "https://transmate.ai/*",
    "https://poe.com/*",
    "https://www.dropbox.com/*",
    "ws://*/*",
    "wss://*/*"
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*",
        "https://transmate.ai/*",
        "https://poe.com/*",
        "https://www.dropbox.com/*"
      ],
      "js": [
        "content_script.js",
        "injected.js",
        "dropins.js"
      ],
      "css": [
        "content_script.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "main.css"
      ],
      "matches": [
        "https://*/*"
      ]
    },
    {
      "resources": [
        "injected.js",
        "dropins.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}