Imedical Typist Extension

Imedical Typist Extension

This extension is needed for Imedical users to control audio playback inside the Imedical's webpage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Imedical Typist Extension",
  "description": "This extension is needed for Imedical users to control audio playback inside the Imedical's webpage",
  "icons": {
    "16": "i-medical16.png",
    "48": "i-medical48.png",
    "128": "i-medical128.png"
  },
  "version": "1.8",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.i-medical.biz/*",
        "https://*.centro2s.com/*"
      ],
      "js": [
        "jquery.min.js",
        "inject.js"
      ],
      "run_at": "document_start"
    }
  ],
  "commands": {
    "pedal-forward-hotkey": {
      "suggested_key": {
        "default": "Alt+A",
        "mac": "Alt+A"
      },
      "description": "Pedal forward audio command."
    },
    "pedal-rewind-hotkey": {
      "suggested_key": {
        "default": "Alt+B",
        "mac": "Alt+B"
      },
      "description": "Pedal rewind audio command."
    },
    "pedal-playpause-hotkey": {
      "suggested_key": {
        "default": "Alt+H",
        "mac": "Alt+H"
      },
      "description": "Pedal play/pause audio command."
    },
    "pedal-stop-hotkey": {
      "suggested_key": {
        "default": "Alt+S",
        "mac": "Alt+S"
      },
      "description": "Pedal stop audio command."
    }
  }
}