Depth Translator for DeepL

Depth Translator for DeepL

An Assistant to Translate Selected Texts with DeepL

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Depth Translator for DeepL",
  "description": "An Assistant to Translate Selected Texts with DeepL",
  "author": "Faisal Ahmed",
  "short_name": "Depth Translator",
  "version": "0.9.0",
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage"
  ],
  "content_security_policy": "default-src 'self' https://www.deepl.com/",
  "background": {
    "scripts": [
      "context.js"
    ]
  },
  "icons": {
    "128": "deepl.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "script.js"
      ],
      "css": [
        "content.css"
      ],
      "exclude_matches": [
        "https://www.deepl.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    "deepl40.png"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "defaut_icon": "deepl.png"
  }
}