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