Disqus Downvote Exposer

This extension shows the number of downvotes of Disqus comments.

Was ist Disqus Downvote Exposer?

Disqus Downvote Exposer ist eine Chrome-Erweiterung, die von Yunku Daniel Kang entwickelt wurde, und ihr Hauptmerkmal ist "This extension shows the number of downvotes of Disqus comments.".

Erweiterungsscreenshots

screenshot

Disqus Downvote Exposer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Disqus Downvote Exposer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Disqus Downvote Exposer Disqus Downvote Exposer
ID onccocebmmmcfgipaappfpolojndnkce
Offizielle URL https://chromewebstore.google.com/detail/disqus-downvote-exposer/onccocebmmmcfgipaappfpolojndnkce
Beschreibung This extension shows the number of downvotes of Disqus comments.
Dateigröße 3.39 KB
Installationsanzahl 2,834
Aktuelle Version 1.0
Letztes Update 2020-01-07
Veröffentlichungsdatum 2020-01-06
Bewertung 4.46/5 Insgesamt 68 Bewertungen
Entwickler Yunku Daniel Kang
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}