Reddit Auto-Voter

Vote subreddits and users, automatically!

What is Reddit Auto-Voter?

Reddit Auto-Voter is a Chrome extension developed by SPF Development, and its main feature is "Vote subreddits and users, automatically!".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Reddit Auto-Voter Extension CRX File

Download Reddit Auto-Voter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Vote for subreddits and users on Reddit.com without the hassle of clicking on those pesky, hidden or hard to find voting buttons!  You can let Reddit know what you think without even thinking as you browse!  If you find something/someone you like/dislike, add it to the lists, then watch everything turn orangered or periwinkle.   It's that simple!

Note: Use at your own risk.  This script is available as proof of concept ONLY.  I do not take responsibility for loss of credibility, account(s), or data.                    

Extension Basic Information

Name Reddit Auto-Voter Reddit Auto-Voter
ID aldhkljebimpdnepejmneoiccjbhlgfa
Official URL https://chromewebstore.google.com/detail/reddit-auto-voter/aldhkljebimpdnepejmneoiccjbhlgfa
Description Vote subreddits and users, automatically!
File Size 54.87 KB
Installation Count 94
Current Version 0.9.1
Last Updated 2017-01-25
Publish Date 2017-01-24
Rating 2.00/5 Total 3 Ratings
Developer SPF Development
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reddit Auto-Voter",
    "description": "Vote subreddits and users, automatically! ",
    "version": "0.9.1",
    "browser_action": {
        "default_icon": "icon16new.png",
        "default_popup": "popup.html",
        "default_title": "Reddit Auto-Voter"
    },
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/www.reddit.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.reddit.com\/*"
            ],
            "js": [
                "third-party\/jquery-3.1.1.min.js",
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icon16new.png",
        "48": "icon48new.png",
        "128": "icon128new.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html"
}