Reply and Upvote for Reddit
Default upvote a reddit post or submission if you reply.
Was ist Reply and Upvote for Reddit?
Reply and Upvote for Reddit ist eine Chrome-Erweiterung, die von Derek Story entwickelt wurde, und ihr Hauptmerkmal ist "Default upvote a reddit post or submission if you reply.".
Erweiterungsscreenshots
Reply and Upvote for Reddit-Erweiterungs-CRX-Datei herunterladen
Laden Sie Reply and Upvote for Reddit-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
Reply and Upvote for Reddit is an easy way to make sure you upvote a thread or parent comment when you contribute to it. This is useful for things like /r/askreddit where you probably would like the thread to get upvoted so your comment has a a chance of getting seen by the masses. Karma! \m/ Many, like myself, forget to upvote a thread when I'm busy thinking about my reply to it. This extension will provide a checkbox (defaulted to be checked) next to the reply "save" button that reads "Upvote Thread" if you are contributing a direct reply to the thread, or it will say "Upvote Reply" if you are replying to another reply. Simply leave it and reply and you will upvote the thread or parent comment. However, maybe you think the thread/parent comment is stupid and you're commenting to say that. Just uncheck it you Debby Downer. -------------------------- Like this extension? Donations are appreciated at: http://bit.ly/1lV6EXs -------------------------- contact: [email protected] http://derekstory.com
Grundlegende Informationen zur Erweiterung
Name | Reply and Upvote for Reddit |
ID | njgjhlnpcklgfpodinpnoiifjfnmadac |
Offizielle URL | https://chromewebstore.google.com/detail/reply-and-upvote-for-redd/njgjhlnpcklgfpodinpnoiifjfnmadac |
Beschreibung | Default upvote a reddit post or submission if you reply. |
Dateigröße | 238 KB |
Installationsanzahl | 48 |
Aktuelle Version | 2.2 |
Letztes Update | 2016-07-06 |
Veröffentlichungsdatum | 2016-07-05 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Derek Story |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Reply and Upvote for Reddit", "description": "Default upvote a reddit post or submission if you reply.", "version": "2.2", "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "icons": { "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.reddit.com\/*" ], "run_at": "document_start", "js": [ "jquery.js", "reddit_upvote.js" ] } ], "background": { "scripts": [ "background.js" ] } } |