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 |
官方網址 | 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" } |