EasyFox語音辨識

EasyFox語音辨識

自動語音辨識

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "EasyFox語音辨識",
  "manifest_version": 2,
  "description": "自動語音辨識",
  "version": "1.0.8",
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus"
  ],
  "icons": {
    "16": "fox-16.png",
    "48": "fox-48.png",
    "64": "fox-64.png",
    "128": "fox-128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_page": "options/options.html",
  "content_scripts": [
    {
      "js": [
        "contentscript.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "SpeechToText.html"
  ]
}