Wen Mang

Wen Mang

Plays audio of selected Chinese text

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Wen Mang",
  "manifest_version": 2,
  "version": "0.2",
  "description": "Plays audio of selected Chinese text",
  "browser_action": {
    "default_icon": "support-128.png",
    "default_title": "Wen Mang - Play audio of selected text!"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "responsivevoice.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "contextMenus"
  ],
  "icons": {
    "128": "support-128.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}