Imgur Viewer

Imgur Viewer

A chrome extension to provide better Imgur album/gallery viewing with images fitted to the window and easy navigation

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 Viewer",
  "description": "A chrome extension to provide better Imgur album/gallery viewing with images fitted to the window and easy navigation",
  "version": "1.0.0",
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "activeTab",
    "https://ajax.googleapis.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://imgur.com/a/*",
        "https://imgur.com/gallery/*"
      ],
      "js": [
        "viewer.js"
      ]
    }
  ]
}