Earthbound Music

Earthbound Music

Play music from the Mother games in real-time throughout your day.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Earthbound Music",
  "description": "Play music from the Mother games in real-time throughout your day.",
  "version": "1.0",
  "browser_action": {
    "default_icon": {
      "19": "icon_19.png",
      "38": "icon_38.png"
    },
    "default_title": "Earthbound Music"
  },
  "background": {
    "scripts": [
      "tune_player.js",
      "extension.js"
    ]
  },
  "icons": {
    "16": "icon_16.png",
    "19": "icon_19.png",
    "32": "icon_32.png",
    "38": "icon_38.png",
    "48": "icon_48.png",
    "64": "icon_64.png",
    "128": "icon_128.png"
  },
  "options_page": "options.html",
  "permissions": [
    "notifications",
    "storage"
  ],
  "web_accessible_resources": [
    "clock.png",
    "bells.ogg"
  ]
}