Disqus Downvote Exposer

This extension shows the number of downvotes of Disqus comments.

¿Qué es Disqus Downvote Exposer?

Disqus Downvote Exposer es una extensión de Chrome desarrollada por Yunku Daniel Kang, y su función principal es "This extension shows the number of downvotes of Disqus comments.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Disqus Downvote Exposer

Descarga archivos de extensión Disqus Downvote Exposer en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Disqus Downvote Exposer Disqus Downvote Exposer
ID onccocebmmmcfgipaappfpolojndnkce
URL Oficial https://chromewebstore.google.com/detail/disqus-downvote-exposer/onccocebmmmcfgipaappfpolojndnkce
Descripción This extension shows the number of downvotes of Disqus comments.
Tamaño del Archivo 3.39 KB
Cantidad de Instalaciones 2,834
Versión Actual 1.0
Última Actualización 2020-01-07
Fecha de Publicación 2020-01-06
Calificación 4.46/5 Total de 68 Calificaciones
Desarrollador Yunku Daniel Kang
Tipo de Pago free
Idiomas Soportados 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"
            ]
        }
    ]
}