StackOverflow Search Tool
This extension helps to search on SO, and learn about your intention
O que é StackOverflow Search Tool?
StackOverflow Search Tool é uma extensão do Chrome desenvolvida por luyihan900225, e sua principal característica é "This extension helps to search on SO, and learn about your intention".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão StackOverflow Search Tool
Baixe arquivos de extensão StackOverflow Search Tool 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
A useful tool to help you search on stackoverflow whenever you need. You will also help us to learn about programming learning behavior by sharing your search behavior.
Informações Básicas da Extensão
Nome | |
ID | hnjcboogacdbabimdiblilojlldfkhlm |
URL Oficial | https://chrome.google.com/webstore/detail/stackoverflow-search-tool/hnjcboogacdbabimdiblilojlldfkhlm |
Descrição | This extension helps to search on SO, and learn about your intention |
Tamanho do Arquivo | 159 KB |
Contagem de Instalações | 93 |
Versão Atual | 3.0.3 |
Última Atualização | 2016-11-09 |
Data de Publicação | 2016-11-09 |
Desenvolvedor | luyihan900225 |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "StackOverflow Search Tool", "description": "This extension helps to search on SO, and learn about your intention", "version": "3.0.3", "icons": { "19": "images\/icon19.png", "38": "images\/icon38.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" }, "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/stackoverflow.com\/*", "https:\/\/www.google.com\/*" ], "js": [ "jquery-2.1.4.min.js", "jquery.autocomplete.js", "record.js" ], "css": [ "jquery.autocomplete.css" ] } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "activeTab", "storage", "unlimitedStorage" ] } |