Reddit Auto-Voter

Vote subreddits and users, automatically!

Reddit Auto-Voter क्या है?

Reddit Auto-Voter SPF Development द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Vote subreddits and users, automatically!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Reddit Auto-Voter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Reddit Auto-Voter Reddit Auto-Voter
ID aldhkljebimpdnepejmneoiccjbhlgfa
आधिकारिक URL https://chromewebstore.google.com/detail/reddit-auto-voter/aldhkljebimpdnepejmneoiccjbhlgfa
विवरण Vote subreddits and users, automatically!
फ़ाइल का आकार 54.87 KB
स्थापना संख्या 94
वर्तमान संस्करण 0.9.1
अंतिम अपडेट 2017-01-25
प्रकाशन तिथि 2017-01-24
रेटिंग 2.00/5 कुल 3 रेटिंग्स
डेवलपर SPF Development
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
}