Mecha Galaxy Snack Bar

Mecha Galaxy Snack Bar

Adds a row of buttons for the consumable items in Mecha Galaxy plus a Receive All Gifts button on the Gifts page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mecha Galaxy Snack Bar",
  "version": "2.1",
  "description": "Adds a row of buttons for the consumable items in Mecha Galaxy plus a Receive All Gifts button on the Gifts page.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "fire-icon-48.png",
    "default_title": "FJ's Mecha Galaxy Snack Bar is ACTIVE!",
    "default_popup": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.mechagalaxy.com/*",
        "*://www.cbsarge.com/*",
        "*://mechagalaxy.gamecraftsmen.com/*",
        "*://mechagalaxy.com/*"
      ],
      "js": [
        "jquery.js",
        "snackbar.js",
        "giftAid.js",
        "invQuery.js",
        "buyable.js",
        "levelpicker.js"
      ],
      "all_frames": true,
      "css": [
        "fjstyle.css"
      ]
    }
  ],
  "icons": {
    "128": "fire-icon-128.png"
  },
  "manifest_version": 2,
  "web_accessible_resources": [
    "menubar2.png",
    "Background.png"
  ]
}