Transmate: AI-powered Bulk Translator

Transmate: AI-powered Bulk Translator

Transmate provide bulk document processing capability to ChatGPT.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "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": {
    "48": "icon.png",
    "96": "icon.png"
  },
  "permissions": [
    "webRequest",
    "scripting",
    "storage",
    "tabs",
    "https://chat.openai.com/*",
    "https://transmate.ai/*",
    "https://poe.com/*",
    "ws://*/*",
    "wss://*/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_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/*"
      ],
      "js": [
        "injected.js",
        "content_script.js"
      ],
      "css": [
        "main.css"
      ],
      "all_frames": true
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{7149b43c-ebb1-4ea3-b820-bf30bebdd647}"
    }
  }
}