Reddit Vote Bomb

Upvote or Downvote all of the comments on one page of a user's profile! With great power comes great responsibility.

Was ist Reddit Vote Bomb?

Reddit Vote Bomb ist eine Chrome-Erweiterung, die von Mike Natale entwickelt wurde, und ihr Hauptmerkmal ist "Upvote or Downvote all of the comments on one page of a user's profile! With great power comes great responsibility.".

Reddit Vote Bomb-Erweiterungs-CRX-Datei herunterladen

Laden Sie Reddit Vote Bomb-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Reddit Vote Bomb Reddit Vote Bomb
ID lmpihiifgekaebpmkfjdhchpkogajljb
Offizielle URL https://chrome.google.com/webstore/detail/reddit-vote-bomb/lmpihiifgekaebpmkfjdhchpkogajljb
Beschreibung Upvote or Downvote all of the comments on one page of a user's profile! With great power comes great responsibility.
Dateigröße 36.57 KB
Installationsanzahl 86
Aktuelle Version 1.0.0.5
Letztes Update 2015-01-28
Veröffentlichungsdatum 2015-01-28
Bewertung 3.40/5 Insgesamt 10 Bewertungen
Entwickler Mike Natale
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}