Hindi to English Translator

Translate Hindi (written in English or Hindi characters) to English with one click.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Hindi to English Translator",
  "description": "Translate Hindi (written in English or Hindi characters) to English with one click.",
  "version": "1.0",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "https://translate.googleapis.com/*",
    "https://inputtools.google.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_icon": "icon.png",
    "default_title": "Hindi to English Translator"
  },
  "author": "Zaid Kesarani",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}