Disqus Downvote Exposer

This extension shows the number of downvotes of Disqus comments.

Cos'è Disqus Downvote Exposer?

Disqus Downvote Exposer è un'estensione di Chrome sviluppata da Yunku Daniel Kang, e la sua funzione principale è "This extension shows the number of downvotes of Disqus comments.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Disqus Downvote Exposer

Scarica i file di estensione Disqus Downvote Exposer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Disqus Downvote Exposer Disqus Downvote Exposer
ID onccocebmmmcfgipaappfpolojndnkce
URL Ufficiale https://chromewebstore.google.com/detail/disqus-downvote-exposer/onccocebmmmcfgipaappfpolojndnkce
Descrizione This extension shows the number of downvotes of Disqus comments.
Dimensione del File 3.39 KB
Conteggio Installazioni 2,834
Versione Corrente 1.0
Ultimo Aggiornamento 2020-01-07
Data di Pubblicazione 2020-01-06
Valutazione 4.46/5 Totale 68 Valutazioni
Sviluppatore Yunku Daniel Kang
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}