Tab Translate

Tab Translate

Easily translate selected text from one language to another and improve your language skills.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.3.2",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "default_locale": "en",
  "homepage_url": "https://tabtranslate.com/",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "__MSG_default__",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/38.png",
    "24": "images/38.png",
    "32": "images/64.png",
    "48": "images/128.png",
    "64": "images/128.png",
    "128": "images/128.png"
  },
  "content_scripts": [
    {
      "css": [
        "contents/google_translate.css"
      ],
      "js": [
        "contents/google_translate.js"
      ],
      "run_at": "document_start",
      "matches": [
        "*://*.translate.google.com/*"
      ]
    },
    {
      "all_frames": true,
      "js": [
        "contents/bubbles.js"
      ],
      "match_about_blank": true,
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://*.translate.google.com/*"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/bubbles/*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "scripting",
    "storage"
  ]
}