Wantlist

Wantlist

Save lists of items you want on the internet.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Save lists of items you want on the internet.",
  "name": "Wantlist",
  "permissions": [
    "http://*.wantlistapp.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.amazon.com/*"
      ],
      "all_frames": false,
      "js": [
        "jquery.js",
        "amazon.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "http://*.wantlistapp.com/*"
      ],
      "all_frames": false,
      "js": [
        "jquery.js",
        "wantlistapp.js"
      ],
      "run_at": "document_end"
    }
  ],
  "manifest_version": 2,
  "version": "0.21"
}