Reddit Comment Translator

Reddit Comment Translator

Want to know what's going in r/de, r/france and other foreign-language subreddits? Look no further! This add-on will let you translate selected text or all top-level comments in a Reddit post to English.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Reddit Comment Translator",
  "version": "1.0",
  "description": "Helps you with translating comments for subreddits with non-native language",
  "icons": {
    "48": "icons/img-48.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.reddit.com/r/*/comments/*"
      ],
      "js": [
        "translate.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "menus",
    "tabs",
    "activeTab"
  ]
}