Translator powered by OpenAI

Translator powered by OpenAI

Translate, OCR, polish, summarize, analyze selected text on web or explain code by using ChatGPT API.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/cld-min.js",
        "js/content_script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "default_locale": "en",
  "name": "__MSG_name__",
  "description": "__MSG_description__",
  "icons": {
    "16": "icon.png",
    "32": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "manifest_version": 3,
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "storage",
    "contextMenus",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "version": "0.1.13",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}