9ZOOM - 9gag Avatar Zoom

9ZOOM - 9gag Avatar Zoom

Unofficial extension that zooms the 9gag users avatars on mouse hover.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "9ZOOM - 9gag Avatar Zoom",
  "short_name": "9ZOOM",
  "version": "0.1.3",
  "manifest_version": 2,
  "description": "Unofficial extension that zooms the 9gag users avatars on mouse hover.",
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "9ZOOM",
    "default_popup": "extension.html"
  },
  "icons": {
    "128": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*.9gag.com/*",
        "https://*.9gag.com/*"
      ],
      "js": [
        "jquery.js",
        "9zoom.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "spinner.gif"
  ]
}