Sorted Stack
An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…
O que é Sorted Stack?
Sorted Stack é uma extensão do Chrome desenvolvida por SwickDev, e sua principal característica é "An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Sorted Stack
Baixe arquivos de extensão Sorted Stack 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
An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as moving this answer to the first place position in the list. Normally the person can asking the question can select a single answer as accepted, but often times other answers arise that were too late to the game or the asker didn't like. This extension always places the answers in sorted order by the number of votes the answer received.
Informações Básicas da Extensão
Nome | Sorted Stack |
ID | fpbbollnpcfogjaccdegemhcmpbeglkn |
URL Oficial | https://chromewebstore.google.com/detail/sorted-stack/fpbbollnpcfogjaccdegemhcmpbeglkn |
Descrição | An extension that supplements stackoverflow.com by marking the highest voted answer by the community with a unique icon, as well as… |
Tamanho do Arquivo | 33.16 KB |
Contagem de Instalações | 22 |
Versão Atual | 0.1 |
Última Atualização | 2016-04-27 |
Data de Publicação | 2016-04-26 |
Classificação | 4.40/5 Total de 5 Avaliações |
Desenvolvedor | SwickDev |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Sorted Stack", "version": "0.1", "content_scripts": [ { "matches": [ "http:\/\/stackoverflow.com\/questions\/*", "https:\/\/stackoverflow.com\/questions\/*" ], "js": [ "content.js" ], "css": [ "style.css" ] } ], "web_accessible_resources": [ "images\/*.png" ], "icons": { "48": "images\/icon.png" } } |