Image Translator - Translate Image by ChatGPT

Image Translator - Translate Image by ChatGPT

Quickly translate images into over 30 languages through Google Translate.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "__MSG_extName__",
  "manifest_version": 3,
  "version": "1.8",
  "default_locale": "en",
  "description": "__MSG_extDescription__",
  "permissions": [
    "identity",
    "identity.email",
    "storage",
    "contextMenus",
    "scripting",
    "activeTab",
    "notifications"
  ],
  "host_permissions": [
    "https://api.imgkits.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_end",
      "js": [
        "ali_oss.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/16px.png",
      "48": "/images/48px.png",
      "128": "/images/128px.png"
    }
  },
  "icons": {
    "16": "/images/16px.png",
    "48": "/images/48px.png",
    "128": "/images/128px.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "ali_oss.js",
        "./images/"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}