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
官方網址 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"
            ]
        }
    ]
}