Imgur Peeker

Imgur Peeker

Adds a link next to the user's name to go directly to albums.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Imgur Peeker",
  "description": "Adds a link next to the user's name to go directly to albums.",
  "version": "2.1.0",
  "icons": {
    "48": "gir48.png",
    "128": "gir128.png"
  },
  "browser_action": {
    "default_icon": {
      "48": "gir48.png",
      "128": "gir128.png"
    },
    "default_title": "Imgur Peeker"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.imgur.com/*"
      ],
      "js": [
        "main.js"
      ]
    }
  ]
}