Examine source code of Music Rhythm Game

Inspect and view changes in Music Rhythm Game source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Music Rhythm Game",
  "version": "1.0",
  "description": "A fun rhythm game where you hit buttons in sync with the music playing on the webpage.",
  "icons": {
    "48": "icon.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "music-rhythm-game@example.com"
    }
  }
}