Reddit Vote Bomb
Upvote or Downvote all of the comments on one page of a user's profile! With great power comes great responsibility.
Co to jest Reddit Vote Bomb?
Reddit Vote Bomb to rozszerzenie Chrome opracowane przez Mike Natale, a jego główną funkcją jest „Upvote or Downvote all of the comments on one page of a user's profile! With great power comes great responsibility.”.
Pobierz plik CRX rozszerzenia Reddit Vote Bomb
Pobierz pliki rozszerzeń Reddit Vote Bomb w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | ![]() |
ID | lmpihiifgekaebpmkfjdhchpkogajljb |
Oficjalny URL | https://chrome.google.com/webstore/detail/reddit-vote-bomb/lmpihiifgekaebpmkfjdhchpkogajljb |
Opis | Upvote or Downvote all of the comments on one page of a user's profile! With great power comes great responsibility. |
Rozmiar pliku | 36.57 KB |
Liczba instalacji | 86 |
Aktualna Wersja | 1.0.0.5 |
Ostatnia Aktualizacja | 2015-01-28 |
Data Publikacji | 2015-01-28 |
Ocena | 3.40/5 Łącznie 10 Oceny |
Deweloper | Mike Natale |
Typ Płatności | free |
Obsługiwane Języki | 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" } ] } |