Reddit Auto-Voter

Vote subreddits and users, automatically!

Reddit Auto-Voterคืออะไร?

Reddit Auto-Voter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย SPF Development และคุณลักษณะหลักของมันคือ "Vote subreddits and users, automatically!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Reddit Auto-Voter

ดาวน์โหลดไฟล์ส่วนขยาย Reddit Auto-Voter ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
}