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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Disqus Downvote Exposer
قم بتنزيل ملفات الامتداد Disqus Downvote Exposer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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" ] } ] } |