Animal Forest:PG BGM

Plays music from Animal Crossing for each hour of the day.
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": 2,
  "name": "Animal Forest BGM",
  "description": "Plays music from Animal Crossing for each hour of the day.",
  "author": "Chris Slojkowski",
  "version": "2.1.0",
  "applications": {
    "gecko": {
      "id": "AnimalForestBGM@ChrisSlojkowski.addons.mozilla.org",
      "strict_min_version": "57.0"
    }
  },
  "background": {
    "scripts": [
      "script/main.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon/quantum-grey.svg",
    "default_title": "Toggle Music"
  },
  "commands": {
    "toggle-music": {
      "suggested_key": {
        "default": "Alt+N"
      },
      "description": "Toggle the add-on's music playback."
    }
  },
  "options_ui": {
    "page": "options/options.html"
  },
  "permissions": [
    "notifications",
    "storage",
    "tabs"
  ]
}