Ladybucks

Ladybucks

Automatically login to Starbucks WI-FI

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ladybucks",
  "manifest_version": 2,
  "version": "0.4.2",
  "description": "Automatically login to Starbucks WI-FI",
  "icons": {
    "16": "logo_16.png",
    "32": "logo_32.png",
    "48": "logo_48.png",
    "64": "logo_64.png",
    "128": "logo_128.png"
  },
  "permissions": [
    "tabs",
    "http://*.wifi.olleh.com/*",
    "https://*.wifi.olleh.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://first.wifi.olleh.com/starbucks/index_new.html"
      ],
      "js": [
        "redirect.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://sms.wifi.olleh.com/web/memconf/starbucks/login.jsp"
      ],
      "js": [
        "ext/jquery-2.0.3.min.js",
        "data/names.js",
        "ladybucks.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ],
  "page_action": {
    "default_name": "ladybucks",
    "default_icon": "logo_16.png"
  }
}