Tali AI

Tali AI

You can use this Chrome extension to dictate your medical notes directly into the Electronic Health Records (EHR) software.…

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tali AI",
  "version": "3.28.0",
  "description": "",
  "options_page": "src/pages/options/index.html",
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "identity",
    "declarativeNetRequest"
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "header-rules",
        "enabled": true,
        "path": "header-rules.json"
      }
    ]
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "<all_urls>"
  ],
  "action": {
    "default_popup": "src/pages/popup/index.html",
    "default_icon": "icon-48.png"
  },
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "src/pages/content/index.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "src/pages/options/index.html"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "*.wav",
        "*.mp4",
        "src/pages/content/**/*.js",
        "src/pages/contentStyle/index.js",
        "icon-128.png",
        "icon-34.png"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}