Quick Translate: Reading & writing translator

Quick Translate: Reading & writing translator

Translate what you read or write with Google Translate, the best translator in the world.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "javascript/worker.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "exclude_matches": [
        "*://translate.google.com/*"
      ],
      "js": [
        "javascript/jquery.js",
        "javascript/helpersScripts/translate_helper.js",
        "javascript/helpersScripts/audio_helper.js",
        "javascript/helpersScripts/lang_list_helper.js",
        "javascript/content.js"
      ],
      "css": [
        "styles/content.css",
        "styles/allPageTransStyles.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "all_frames": true,
      "js": [
        "javascript/jquery.js",
        "javascript/page_styles.js"
      ],
      "css": [
        "styles/content.css",
        "styles/allPageTransStyles.css"
      ],
      "matches": [
        "*://*.translate.goog/*"
      ]
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_icon": "icons/128.png",
    "default_title": "Translator",
    "default_popup": "popup.html"
  },
  "default_locale": "en",
  "description": "__MSG_description__",
  "icons": {
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_name__",
  "options_page": "settings.html",
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage",
    "tabs",
    "system.display",
    "declarativeNetRequest"
  ],
  "short_name": "Translator",
  "version": "1.0.1",
  "web_accessible_resources": [
    {
      "resources": [
        "javascript/*",
        "icons/*",
        "styles/*",
        "fonts/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}