vx

vx

This extension listens to you and copies what you said to the clipboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "vx",
  "description": "This extension listens to you and copies what you said to the clipboard.",
  "version": "0.5.2",
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "commands": {
    "listen1": {
      "description": "Listen [first language]",
      "suggested_key": {
        "default": "Ctrl+Shift+0"
      }
    },
    "listen2": {
      "description": "Listen [second language]",
      "suggested_key": {
        "default": "Ctrl+Shift+9"
      }
    }
  },
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "clipboardWrite",
    "notifications",
    "storage",
    "activeTab"
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    "popup.html"
  ]
}