Translate: Reading & writing translator

Translate: Reading & writing translator

Translate while you read and write with Translate, the world’s most accurate translator.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Translate: Reading & writing translator",
  "description": "Translate while you read and write with Translate, the world’s most accurate translator.",
  "version": "3.0.0",
  "default_locale": "en",
  "options_page": "pages/settings/settings.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "readability/readability.js",
        "googleDocsUtil/googleDocsUtil.js",
        "guessLanguage/guessLanguage.js",
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ],
  "background": {
    "service_worker": "worker_wrapper.js"
  },
  "action": {
    "default_icon": "img/logo-paw.png",
    "default_popup": "popup/popup.html",
    "default_title": "Lookup a definition!"
  },
  "icons": {
    "16": "img/logo-paw16.png",
    "48": "img/logo-paw48.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "img/*",
        "content.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "declarativeNetRequest",
    "storage",
    "cookies"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "rule1",
        "enabled": true,
        "path": "netRules.json"
      }
    ]
  }
}