Neokazam!

Neokazam!

Make the shop wizard less painful. Make quick-stocking less painful. You get the idea...

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "scripts": [
      "context_bg.js"
    ]
  },
  "content_scripts": [
    {
      "exclude_globs": [],
      "exclude_matches": [],
      "include_globs": [
        "http://www.neopets.com/market.phtml*"
      ],
      "js": [
        "wizard.js"
      ],
      "matches": [
        "http://neopets.com/*",
        "http://www.neopets.com/*"
      ],
      "run_at": "document_end"
    },
    {
      "exclude_globs": [],
      "exclude_matches": [],
      "include_globs": [
        "http://www.neopets.com/iteminfo.phtml*"
      ],
      "js": [
        "iteminfo.js"
      ],
      "matches": [
        "http://neopets.com/*",
        "http://www.neopets.com/*"
      ],
      "run_at": "document_end"
    },
    {
      "exclude_globs": [],
      "exclude_matches": [],
      "include_globs": [
        "http://www.neopets.com/quickstock.phtml*"
      ],
      "js": [
        "quickstock.js"
      ],
      "matches": [
        "http://neopets.com/*",
        "http://www.neopets.com/*"
      ],
      "run_at": "document_end"
    },
    {
      "exclude_globs": [],
      "exclude_matches": [],
      "include_globs": [
        "http://www.neopets.com/safetydeposit.phtml*",
        "http://www.neopets.com/neohome/shed*",
        "http://www.neopets.com/closet.phtml*"
      ],
      "js": [
        "safetydeposit.js"
      ],
      "matches": [
        "http://neopets.com/*",
        "http://www.neopets.com/*"
      ],
      "run_at": "document_end"
    },
    {
      "exclude_globs": [],
      "exclude_matches": [],
      "include_globs": [
        "http://*.neopets.com/*"
      ],
      "js": [
        "context.js"
      ],
      "matches": [
        "http://neopets.com/*",
        "http://www.neopets.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "description": "Make the shop wizard less painful. Make quick-stocking less painful. You get the idea...",
  "icons": {
    "16": "shopwizard-16.png",
    "48": "shopwizard-48.png",
    "128": "shopwizard-128.png"
  },
  "manifest_version": 2,
  "name": "Neokazam!",
  "permissions": [
    "tabs",
    "http://neopets.com/",
    "http://*.neopets.com/",
    "contextMenus"
  ],
  "version": "1.5.1"
}