Reddit Vote Bomb
Upvote or Downvote all of the comments on one page of a user's profile! With great power comes great responsibility.
Vad är Reddit Vote Bomb?
Reddit Vote Bomb är en Chrome-tillägg utvecklad av Mike Natale, och dess huvudfunktion är "Upvote or Downvote all of the comments on one page of a user's profile! With great power comes great responsibility.".
Ladda ner Reddit Vote Bomb-förlängningens CRX-fil
Ladda ner Reddit Vote Bomb-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Love certain Reddit users? Hate certain Reddit users? This extension allows you to upvote or downvote all of the submissions on one page of a user's profile. You'll have to navigate through their submission history manually if it's on more than one page, but this will save you lots of clicking time either way!
Grundläggande Information om Tillägg
Namn | ![]() |
ID | lmpihiifgekaebpmkfjdhchpkogajljb |
Officiell webbadress | https://chrome.google.com/webstore/detail/reddit-vote-bomb/lmpihiifgekaebpmkfjdhchpkogajljb |
Beskrivning | Upvote or Downvote all of the comments on one page of a user's profile! With great power comes great responsibility. |
Filstorlek | 36.57 KB |
Antal Installationer | 86 |
Aktuell Version | 1.0.0.5 |
Senast Uppdaterad | 2015-01-28 |
Publiceringsdatum | 2015-01-28 |
Betyg | 3.40/5 Totalt 10 Betyg |
Utvecklare | Mike Natale |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Reddit Vote Bomb", "version": "1.0.0.5", "description": "Upvote or Downvote all of the comments on one page of a user's profile! With great power comes great responsibility.", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "tabs", "http:\/\/www.reddit.com\/user\/*", "https:\/\/www.reddit.com\/user\/*" ], "content_scripts": [ { "matches": [ "http:\/\/www.reddit.com\/user\/*", "https:\/\/www.reddit.com\/user\/*" ], "js": [ "jquery-2.1.1.min.js", "upvotedownvote.js" ], "run_at": "document_end" } ] } |