Disqus Downvote Exposer
This extension shows the number of downvotes of Disqus comments.
Qu'est-ce que Disqus Downvote Exposer ?
Disqus Downvote Exposer est une extension Chrome développée par Yunku Daniel Kang, et sa fonction principale est "This extension shows the number of downvotes of Disqus comments.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Disqus Downvote Exposer
Téléchargez les fichiers d'extension Disqus Downvote Exposer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Disqus Downvote Exposer |
ID | onccocebmmmcfgipaappfpolojndnkce |
URL Officiel | https://chromewebstore.google.com/detail/disqus-downvote-exposer/onccocebmmmcfgipaappfpolojndnkce |
Description | This extension shows the number of downvotes of Disqus comments. |
Taille du Fichier | 3.39 KB |
Nombre d'Installations | 2,834 |
Version Actuelle | 1.0 |
Dernière Mise à Jour | 2020-01-07 |
Date de Publication | 2020-01-06 |
Évaluation | 4.46/5 Total 68 Évaluations |
Développeur | Yunku Daniel Kang |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |