Phonal Assistant - Productive Online Meetings

Phonal Assistant - Productive Online Meetings

Transcribe conversations in real-time, save transcripts and get tips about speaking performance.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Phonal Assistant - Productive Online Meetings",
  "version": "1.1.0.2",
  "manifest_version": 2,
  "description": "Transcribe conversations in real-time, save transcripts and get tips about speaking performance.",
  "permissions": [
    "tabs",
    "storage",
    "activeTab",
    "tabCapture",
    "contextMenus",
    "https://*.phonal.ai/*",
    "https://heapanalytics.com/*",
    "https://*.heapanalytics.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content-script.bundle.js"
      ],
      "css": []
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/content-script.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "vendor/heap-analytics.js",
      "background.bundle.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "32": "assets/icons/phonal-icon-32.png"
    }
  },
  "options_page": "options.html",
  "chrome_url_overrides": {},
  "icons": {
    "32": "assets/icons/phonal-icon-32.png",
    "48": "assets/icons/phonal-icon-48.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://cdn.heapanalytics.com; object-src 'self'",
  "web_accessible_resources": [
    "vendor/*",
    "images/*",
    "audio/*",
    "popup.html"
  ]
}