Disqus Downvote Exposer

This extension shows the number of downvotes of Disqus comments.

什么是Disqus Downvote Exposer?

Disqus Downvote Exposer是由Yunku Daniel Kang开发的Chrome扩展程序,该扩展的主要功能是“This extension shows the number of downvotes of Disqus comments.”。

扩展截图

screenshot

下载Disqus Downvote Exposer扩展crx文件

下载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"
            ]
        }
    ]
}