Shubu.ai Voice to Text Plugin

Shubu.ai Voice to Text Plugin

Transform your voice to text with Shubu.ai

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "2.1.4",
  "name": "Shubu.ai Voice to Text Plugin",
  "description": "Transform your voice to text with Shubu.ai",
  "author": "Shubu.ai",
  "homepage_url": "https://www.shubu.ai",
  "browser_action": {
    "default_icon": "static/images/mic.png",
    "default_popup": "popup.html",
    "default_title": "Shubu.ai"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "match_about_blank": false,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "js": [
        "js/content.js"
      ]
    },
    {
      "all_frames": true,
      "match_about_blank": false,
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "js": [
        "js/reminder.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "permissions": [
    "storage",
    "http://*/*",
    "https://*/*",
    "file://*/*"
  ],
  "icons": {
    "63": "static/images/mic.png"
  },
  "web_accessible_resources": [
    "static/*",
    "css/*",
    "js/*"
  ]
}