StackOverview
View quick stats about StackOverflow and StackExchange posts from Google search results
O que é StackOverview?
StackOverview é uma extensão do Chrome desenvolvida por Jason Wang, e sua principal característica é "View quick stats about StackOverflow and StackExchange posts from Google search results".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão StackOverview
Baixe arquivos de extensão StackOverview 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
Get information about how many answers a StackOverflow or StackExchange post has and if there is an accepted answer for it straight from your Google search results. A green badge indicates that there is an accepted answer, yellow indicates that there is no accepted answer, and red indicates that there are no answers.
Informações Básicas da Extensão
Nome | |
ID | oihjaeffdklalbagimogdhokoaidmain |
URL Oficial | https://chrome.google.com/webstore/detail/stackoverview/oihjaeffdklalbagimogdhokoaidmain |
Descrição | View quick stats about StackOverflow and StackExchange posts from Google search results |
Tamanho do Arquivo | 5.78 KB |
Contagem de Instalações | 44 |
Versão Atual | 1.0.4 |
Última Atualização | 2015-01-29 |
Data de Publicação | 2015-01-29 |
Classificação | 4.83/5 Total de 6 Avaliações |
Desenvolvedor | Jason Wang |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "1.0.4", "name": "StackOverview", "author": "Jason Wang", "description": "View quick stats about StackOverflow and StackExchange posts from Google search results", "content_scripts": [ { "matches": [ "*:\/\/www.google.com\/*", "*:\/\/www.google.ca\/*" ], "css": [ "style.css" ], "js": [ "index.js" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "http:\/\/*.stackoverflow.com\/*", "https:\/\/*.stackoverflow.com\/*", "http:\/\/*.stackexchange.com\/*", "https:\/\/*.stackexchange.com\/*" ], "icons": { "48": "icons\/so48trans.png", "128": "icons\/so128trans.png" } } |