Imgur Upvote Fairy

Imgur Upvote Fairy

Upvote or downvote everything on an Imgur page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Imgur Upvote Fairy",
  "author": "sneakymousetrap",
  "version": "0.9",
  "description": "Upvote or downvote everything on an Imgur page.",
  "content_scripts": [
    {
      "matches": [
        "http://imgur.com/*",
        "https://imgur.com/*"
      ],
      "js": [
        "jquery.js",
        "page.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Upvote Fairy",
    "default_icon": "upvote_16.png",
    "default_popup": "popup.html"
  },
  "manifest_version": 2,
  "icons": {
    "16": "upvote_16.png",
    "48": "upvote_48.png",
    "128": "upvote_128.png"
  }
}