VIP Enhancer

VIP Enhancer

Take your Volunteer Information Portal to the next level

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "VIP Enhancer",
  "version": "0.1.8",
  "description": "Take your Volunteer Information Portal to the next level",
  "author": "Grace Barrington",
  "manifest_version": 2,
  "permissions": [
    "http://vip.stjohnambulance.com.au/",
    "https://vip.stjohnambulance.com.au/"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.vip.stjohnambulance.com.au/*calendar*",
        "*://*.vip.stjohnambulance.com.au/*Calendar*",
        "*://*.vip.stjohnwa.com.au/*calendar*",
        "*://*.vip.stjohnwa.com.au/*Calendar*"
      ],
      "css": [
        "css/activities.css"
      ],
      "js": [
        "js/jquery-2.1.1.js",
        "js/activities.js"
      ]
    },
    {
      "matches": [
        "*://*.vip.stjohnambulance.com.au/Member",
        "*://*.vip.stjohnambulance.com.au/member",
        "*://*.vip.stjohnwa.com.au/Member",
        "*://*.vip.stjohnwa.com.au/member"
      ],
      "js": [
        "js/jquery-2.1.1.js",
        "js/homepage.js"
      ]
    },
    {
      "matches": [
        "*://*.vip.stjohnwa.com.au/*"
      ],
      "js": [
        "js/jquery-2.1.1.js",
        "js/refresh_session.js"
      ]
    }
  ],
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "VIP Enhancer",
    "default_popup": "launcher.html"
  }
}