Disqus Downvote Exposer

This extension shows the number of downvotes of Disqus comments.

Co je Disqus Downvote Exposer?

Disqus Downvote Exposer je rozšíření Chrome vyvinuté Yunku Daniel Kang, a jeho hlavní funkcí je „This extension shows the number of downvotes of Disqus comments.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Disqus Downvote Exposer

Stáhněte si soubory rozšíření Disqus Downvote Exposer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Disqus Downvote Exposer Disqus Downvote Exposer
ID onccocebmmmcfgipaappfpolojndnkce
Oficiální URL https://chromewebstore.google.com/detail/disqus-downvote-exposer/onccocebmmmcfgipaappfpolojndnkce
Popis This extension shows the number of downvotes of Disqus comments.
Velikost souboru 3.39 KB
Počet instalací 2,834
Aktuální Verze 1.0
Poslední Aktualizace 2020-01-07
Datum Vydání 2020-01-06
Hodnocení 4.46/5 Celkem 68 Hodnocení
Vývojář Yunku Daniel Kang
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}