Ship Along

Ship Along

A handy way to find just what you need to get free shipping on Amazon.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Ship Along",
  "version": "0.0.0.2",
  "description": "A handy way to find just what you need to get free shipping on Amazon.com",
  "manifest_version": 2,
  "homepage_url": "http://shipalong.com",
  "icons": {
    "128": "img/icon_128.png"
  },
  "permissions": [
    "*://www.amazon.com/*",
    "http://shipalong.com/*"
  ],
  "web_accessible_resources": [
    "html/templates.html",
    "img/icon_32.png",
    "img/action.png",
    "img/btn_add.png",
    "img/loading.gif",
    "img/loading.gif",
    "img/loading_lrg.gif"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://www.amazon.com/*"
      ],
      "css": [
        "css/styles.css"
      ],
      "js": [
        "js/lib/jquery-1.6.2.min.js",
        "js/lib/underscore.1.2.0.js"
      ],
      "run_at": "document_start",
      "all_frames": false
    },
    {
      "matches": [
        "*://www.amazon.com/*"
      ],
      "js": [
        "js/app.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ]
}