Disqus Downvote Exposer
This extension shows the number of downvotes of Disqus comments.
Vad är Disqus Downvote Exposer?
Disqus Downvote Exposer är en Chrome-tillägg utvecklad av Yunku Daniel Kang, och dess huvudfunktion är "This extension shows the number of downvotes of Disqus comments.".
Tilläggsskärmbilder
Ladda ner Disqus Downvote Exposer-förlängningens CRX-fil
Ladda ner Disqus Downvote Exposer-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
UPDATE: More than five years later, Disqus has decided to bring back exposure of downvotes. (https://blog.disqus.com/bringing-back-downvotes) This extension is now obsolete. But... who knows how things will change again, eh? --- ORIGINAL: Less than a month ago, Disqus has decided to hide the downvote counters of its comments. Less than a day ago, I have learned that the number of downvotes is still kept in a classname property. This extension simply displays that information. However, unlike upvotes, the classname does not seem to be updated automatically. It is possible that this extension may not work in time, without any alternatives. Hopefully, this will become obsolete. March 12th, 2014 Seoul
Grundläggande Information om Tillägg
Namn | Disqus Downvote Exposer |
ID | onccocebmmmcfgipaappfpolojndnkce |
Officiell webbadress | https://chromewebstore.google.com/detail/disqus-downvote-exposer/onccocebmmmcfgipaappfpolojndnkce |
Beskrivning | This extension shows the number of downvotes of Disqus comments. |
Filstorlek | 3.39 KB |
Antal Installationer | 2,834 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2020-01-07 |
Publiceringsdatum | 2020-01-06 |
Betyg | 4.46/5 Totalt 68 Betyg |
Utvecklare | Yunku Daniel Kang |
Betalningssätt | free |
Stödda Språk | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Disqus Downvote Exposer", "description": "This extension shows the number of downvotes of Disqus comments.", "version": "1.0", "author": "Yunku Daniel Kang", "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*.disqus.com\/*", "*:\/\/disqus.com\/*" ], "js": [ "script.js" ] } ] } |