Jazz-MIDI

Jazz-MIDI

MIDI support for browsers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Jazz-MIDI",
  "description": "MIDI support for browsers",
  "author": "Jazz-Soft",
  "version": "1.0.2.0",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_title": "Jazz-MIDI",
    "default_icon": "good19.png",
    "default_popup": "good.html"
  },
  "permissions": [
    "nativeMessaging"
  ],
  "applications": {
    "gecko": {
      "id": "jazz_midi@jazz_soft.com",
      "strict_min_version": "50.0"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "homepage_url": "https://jazz-soft.net"
}