Disqus Downvote Exposer
This extension shows the number of downvotes of Disqus comments.
Co to jest Disqus Downvote Exposer?
Disqus Downvote Exposer to rozszerzenie Chrome opracowane przez Yunku Daniel Kang, a jego główną funkcją jest „This extension shows the number of downvotes of Disqus comments.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Disqus Downvote Exposer
Pobierz pliki rozszerzeń Disqus Downvote Exposer 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
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
Podstawowe informacje o rozszerzeniu
Nazwa | Disqus Downvote Exposer |
ID | onccocebmmmcfgipaappfpolojndnkce |
Oficjalny URL | https://chromewebstore.google.com/detail/disqus-downvote-exposer/onccocebmmmcfgipaappfpolojndnkce |
Opis | This extension shows the number of downvotes of Disqus comments. |
Rozmiar pliku | 3.39 KB |
Liczba instalacji | 2,834 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2020-01-07 |
Data Publikacji | 2020-01-06 |
Ocena | 4.46/5 Łącznie 68 Oceny |
Deweloper | Yunku Daniel Kang |
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": "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" ] } ] } |