Next Bus Away - Seattle

Next Bus Away - Seattle

Gets the next arrival time for a given bus using OneBusAway api

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Next Bus Away - Seattle",
  "description": "Gets the next arrival time for a given bus using OneBusAway api",
  "version": "0.10",
  "background": {
    "scripts": [
      "jquery.js",
      "nextbus.js"
    ]
  },
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "nextbus.png"
  },
  "icons": {
    "128": "nextbus.png"
  },
  "permissions": [
    "http://api.pugetsound.onebusaway.org/api/*",
    "storage",
    "contextMenus"
  ],
  "options_page": "options.html"
}