Music Play Countdown

Music Play Countdown

For musicians who like to play and practice along a song, this extension performs a countdown before the song starts so you can get ready!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "description": "Performs a countdown before playing a song.",
  "manifest_version": 2,
  "name": "Music Play Countdown",
  "version": "1.0.2resigned1",
  "homepage_url": "https://github.com/vitorog/music-play-countdown",
  "icons": {
    "48": "icons/metronome.svg",
    "96": "icons/metronome.svg"
  },
  "author": "Vitor Gomes",
  "page_action": {
    "default_icon": {
      "19": "icons/metronome-19.png",
      "38": "icons/metronome-38.png"
    },
    "default_title": "Music Play Countdown",
    "default_popup": "src/popup/popup.html",
    "show_matches": [
      "*://www.deezer.com/*",
      "*://open.spotify.com/*"
    ]
  },
  "web_accessible_resources": [
    "sounds/beat.ogg"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.deezer.com/*"
      ],
      "js": [
        "src/content-scripts/deezer.js"
      ]
    },
    {
      "matches": [
        "*://open.spotify.com/*"
      ],
      "js": [
        "src/content-scripts/spotify.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{541095af-a57f-4f9d-8cb8-e6c1b73cbe0a}"
    }
  }
}