Bridge Translate App

Bridge Translate App

Foreign -> Japanese -> Your language result is not bad. This app can 'Bridged' Translation.

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": "ko",
  "name": "__MSG_extName__",
  "short_name": "BridgeTranslate",
  "description": "__MSG_extDescription__",
  "version": "0.56",
  "icons": {
    "16": "image/16x16.png",
    "48": "image/48x48.png",
    "128": "image/128x128.png"
  },
  "action": {
    "default_icon": {
      "19": "image/19x19.png",
      "38": "image/38x38.png"
    },
    "default_popup": "xeno_popup.html"
  },
  "background": {
    "service_worker": "script/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "script/trans.lib.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "storage"
  ]
}