PixPeeker

PixPeeker

Hover Over links to see images overlaid on current page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "0.0.6",
  "name": "PixPeeker",
  "description": "Hover Over links to see images overlaid on current page",
  "browser_action": {
    "default_icon": "media/on.png",
    "default_title": "PixPeeker-Enabled"
  },
  "permissions": [
    "webNavigation"
  ],
  "background": {
    "scripts": [
      "events.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "app.js"
      ]
    }
  ]
}