Disqus Downvote Exposer

This extension shows the number of downvotes of Disqus comments.

Τι είναι το Disqus Downvote Exposer;

Το Disqus Downvote Exposer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Yunku Daniel Kang, και η κύρια λειτουργία του είναι "This extension shows the number of downvotes of Disqus comments.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Disqus Downvote Exposer

Λήψη αρχείων επέκτασης Disqus Downvote Exposer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Disqus Downvote Exposer Disqus Downvote Exposer
ID onccocebmmmcfgipaappfpolojndnkce
Επίσημο URL https://chromewebstore.google.com/detail/disqus-downvote-exposer/onccocebmmmcfgipaappfpolojndnkce
Περιγραφή This extension shows the number of downvotes of Disqus comments.
Μέγεθος Αρχείου 3.39 KB
Αριθμός Εγκαταστάσεων 2,834
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2020-01-07
Ημερομηνία Δημοσίευσης 2020-01-06
Αξιολόγηση 4.46/5 Συνολικά 68 Αξιολογήσεις
Προγραμματιστής Yunku Daniel Kang
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}