Reddit Auto-Voter
Vote subreddits and users, automatically!
什么是Reddit Auto-Voter?
Reddit Auto-Voter是由SPF Development开发的Chrome扩展程序,该扩展的主要功能是“Vote subreddits and users, automatically!”。
扩展截图
下载Reddit Auto-Voter扩展crx文件
下载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 |
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" } |