Reddit Upvoter

Reddit Upvoter

Use this extension to upvote or downvote all the links on a given reddit.com page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Reddit Upvoter",
  "version": "0.0.2",
  "manifest_version": 2,
  "description": "Use this extension to upvote or downvote all the links on a given reddit.com page",
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "19": "images/icon-19.png",
      "38": "images/icon-38.png"
    },
    "default_title": "Reddit Upvoter",
    "default_popup": "popup.html"
  },
  "omnibox": {
    "keyword": "Reddit Upvoter"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.reddit.com/*",
        "https://www.reddit.com/*"
      ],
      "css": [
        "styles/main.css"
      ],
      "js": [
        "scripts/jquery-1.10.2.js",
        "scripts/contentscript.js",
        "scripts/popup.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "http://www.reddit.com/*",
    "https://www.reddit.com/*"
  ]
}