Reddit Auto-Voter

Vote subreddits and users, automatically!

Reddit Auto-Voter란 무엇입니까?

Reddit Auto-Voter은(는) SPF Development에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Vote subreddits and users, automatically!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Reddit Auto-Voter 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
}