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 с друзьями, чтобы легко установить расширения 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 |
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" ] } ] } |