AI Translate

AI Translate

AI Translate - Instant webpage AI translator with ChatGPT technology. Read, learn, work with multiple languages like native speakers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "AI Translate",
  "description": "__MSG_appDesc__",
  "version": "1.2.0",
  "default_locale": "en",
  "manifest_version": 3,
  "background": {
    "service_worker": "scripts/background.js"
  },
  "action": {
    "default_icon": "assets/icon/i_32.png",
    "default_title": "AI Translate",
    "default_popup": "popup/popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/jquery.js",
        "scripts/content-script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "assets/icon/i_16.png",
    "24": "assets/icon/i_24.png",
    "32": "assets/icon/i_32.png",
    "48": "assets/icon/i_48.png",
    "128": "assets/icon/i_128.png",
    "512": "assets/icon/i_512.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "config/config.json"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    },
    {
      "resources": [
        "assets/click_icon.png",
        "assets/i_24.png"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    },
    {
      "resources": [
        "assets/flags/*.svg"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    },
    {
      "resources": [
        "assets/click_icon_h.png"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    },
    {
      "resources": [
        "scripts/elements.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "scripting",
    "declarativeNetRequest"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "rules_id_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  }
}