Visio translate Chrome extension

Visio translate Chrome extension

Extension that allows participants to listen to the floor and the interpreter.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Visio translate Chrome extension",
  "description": "Extension that allows participants to listen to the floor and the interpreter.",
  "version": "2.0.6",
  "browser_action": {
    "default_icon": {
      "16": "assets/16.png",
      "32": "assets/32.png",
      "48": "assets/48.png",
      "128": "assets/128.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "assets/128.png"
  },
  "background": {
    "scripts": [
      "libs/peerjs.min.js",
      "libs/socket.io.js",
      "background.js",
      "libs/axios.min.js",
      "libs/lodash.min.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "tabCapture",
    "storage",
    "notifications"
  ]
}