MusicPALS - Play And Learn Songs

MusicPALS - Play And Learn Songs

Connect MIDI Instrument and start learning from YouTube Videos and Chord Websites

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "MusicPALS - Play And Learn Songs",
  "short_name": "MusicPALS",
  "description": "Connect MIDI Instrument and start learning from YouTube Videos and Chord Websites",
  "homepage_url": "http://musicpals.rocks",
  "version": "1.1.18",
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Play And Learn Song"
  },
  "content_scripts": [
    {
      "matches": [
        "*://musicpals.rocks/*",
        "*://chordify.net/chords/*",
        "*://tabs.ultimate-guitar.com/*_crd.htm",
        "*://www.songsterr.com/*-chords-*",
        "*://www.e-chords.com/chords/*",
        "*://www.ufret.jp/song.php*",
        "*://music.j-total.net/data/*",
        "*://www.gtp.tw/gtp_view.php*",
        "*://www.91pu.com.tw/song/*"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "manifest_version": 2
}