Cyan Voice

Cyan Voice

Use voice to text in Wordpress

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "IamBatman",
  "browser_action": {
    "browser_style": false,
    "default_popup": "options.html",
    "default_title": "Cyan Voice"
  },
  "description": "Use voice to text in Wordpress",
  "homepage_url": "https://github.com/viswanath96/Cyan-Voice",
  "icons": {
    "16": "icon-16x16.png",
    "32": "icon-32x32.png",
    "48": "icon-48x48.png",
    "64": "icon-64x64.png",
    "128": "icon-128x128.png"
  },
  "manifest_version": 2,
  "name": "Cyan Voice",
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "<all_urls>",
    "contextMenus",
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "version": "5.0.0"
}