Chat Translator for DeepL

Chat Translator for DeepL

Translate YouTubeLive chats by DeepL API

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chat Translator for DeepL",
  "version": "1.1.6",
  "permissions": [
    "storage",
    "identity",
    "identity.email"
  ],
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    "loading.gif"
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html",
    "run_at": "document_start"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://www.youtube.com/live_chat*"
      ],
      "all_frames": true,
      "js": [
        "chat-translator.js"
      ]
    }
  ]
}