Reddit Auto-Voter
Vote subreddits and users, automatically!
Reddit Auto-Voter là gì?
Reddit Auto-Voter là một tiện ích mở rộng Chrome được phát triển bởi SPF Development, và tính năng chính của nó là "Vote subreddits and users, automatically!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Reddit Auto-Voter
Tải xuống các tệp mở rộng Reddit Auto-Voter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Reddit Auto-Voter |
ID | aldhkljebimpdnepejmneoiccjbhlgfa |
URL Chính Thức | https://chromewebstore.google.com/detail/reddit-auto-voter/aldhkljebimpdnepejmneoiccjbhlgfa |
Mô tả | Vote subreddits and users, automatically! |
Kích Thước Tệp | 54.87 KB |
Số Lần Cài Đặt | 94 |
Phiên Bản Hiện Tại | 0.9.1 |
Cập Nhật Lần Cuối | 2017-01-25 |
Ngày Phát Hành | 2017-01-24 |
Đánh Giá | 2.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | SPF Development |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } |