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