Translation Machine

Translation Machine

Used to translate all kinds of commonly used social networking sites, so that you better communicate with others.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "__MSG_AppName__",
  "description": "__MSG_AppDesc__",
  "version": "0.1.8",
  "options_page": "options/index.html",
  "background": {
    "service_worker": "background/index.js"
  },
  "icons": {
    "128": "assets/icons/icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "content/index.js"
      ],
      "css": [
        "content/style.css"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*/*"
  ]
}