TrollAway
Blacklist with auto-downvoting for Reddit. For those special trolls.
TrollAway क्या है?
TrollAway http://amoffat.github.com/trollaway द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Blacklist with auto-downvoting for Reddit. For those special trolls."।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में TrollAway एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
TrollAway is a Reddit blacklisting extension for Google Chrome. It allows you to selectively add Reddit users to a blacklist, which is then used to auto-downvote any future comments that user makes on a page you happen to visit. The interface is super simple. A "blacklist" link is added underneath every comment. Just fire and forget. Any future comments that you see will be checked against your blacklist. If the user is in them, the comment is downvoted.
एक्सटेंशन की मूल जानकारी
नाम | |
ID | aepafkodnebdjpodpajigeffnjibjlba |
आधिकारिक URL | https://chrome.google.com/webstore/detail/trollaway/aepafkodnebdjpodpajigeffnjibjlba |
विवरण | Blacklist with auto-downvoting for Reddit. For those special trolls. |
फ़ाइल का आकार | 124 KB |
स्थापना संख्या | 29 |
वर्तमान संस्करण | 0.4 |
अंतिम अपडेट | 2012-08-11 |
प्रकाशन तिथि | 2012-08-11 |
रेटिंग | 2.75/5 कुल 8 रेटिंग्स |
डेवलपर | http://amoffat.github.com/trollaway |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://amoffat.github.com/trollaway/ |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "TrollAway", "version": "0.4", "manifest_version": 2, "description": "Blacklist with auto-downvoting for Reddit. For those special trolls.", "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "storage" ], "page_action": { "default_icon": "icon.png", "default_title": "TrollAway", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/www.reddit.com\/*", "http:\/\/reddit.com\/*" ], "js": [ "jquery.min.js", "downvote.js" ] } ], "icons": { "48": "icon-48.png", "128": "icon-128.png" } } |