Disqus Downvote Exposer
This extension shows the number of downvotes of Disqus comments.
O que é Disqus Downvote Exposer?
Disqus Downvote Exposer é uma extensão do Chrome desenvolvida por Yunku Daniel Kang, e sua principal característica é "This extension shows the number of downvotes of Disqus comments.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Disqus Downvote Exposer
Baixe arquivos de extensão Disqus Downvote Exposer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Disqus Downvote Exposer |
ID | onccocebmmmcfgipaappfpolojndnkce |
URL Oficial | https://chromewebstore.google.com/detail/disqus-downvote-exposer/onccocebmmmcfgipaappfpolojndnkce |
Descrição | This extension shows the number of downvotes of Disqus comments. |
Tamanho do Arquivo | 3.39 KB |
Contagem de Instalações | 2,834 |
Versão Atual | 1.0 |
Última Atualização | 2020-01-07 |
Data de Publicação | 2020-01-06 |
Classificação | 4.46/5 Total de 68 Avaliações |
Desenvolvedor | Yunku Daniel Kang |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |