Hover Hound

Hover Hound

See Amazon prices while shopping on Newegg.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hover Hound",
  "short_name": "Hover Hound",
  "version": "1.6.7",
  "manifest_version": 2,
  "description": "See Amazon prices while shopping on Newegg.",
  "icons": {
    "16": "images/new-dog.png",
    "48": "images/new-dog.png",
    "128": "images/new-dog.png"
  },
  "web_accessible_resources": [
    "images/*.ico",
    "images/*.png",
    "images/*.gif"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.newegg.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ]
}