anyLanguage.ai - Instant Language Translator

anyLanguage.ai - Instant Language Translator

Translate any text with your custom index + <lang-code> <your-text> in any text input field and hit your custom hotkey combination.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "anyLanguage.ai - Instant Language Translator",
  "version": "6.1",
  "description": "Translate any text with your custom index + <lang-code> <your-text> in any text input field and hit your custom hotkey combination.",
  "manifest_version": 3,
  "icons": {
    "48": "images/favicon-32x32.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "ExtPay.js",
        "contentScript.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options.html",
  "action": {
    "default_icon": "images/favicon-32x32.png",
    "default_popup": "options.html"
  }
}