github-find
A plugin for searcing within Github repos.
O que é github-find?
github-find é uma extensão do Chrome desenvolvida por Aidan Feldman, e sua principal característica é "A plugin for searcing within Github repos.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão github-find
Baixe arquivos de extensão github-find 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
When viewing a repository on the Github website, an Octocat icon will appear in the address bar - press CTL-SHIFT-f and a search box will appear. Check out the source here: https://github.com/afeld/github-find
Informações Básicas da Extensão
Nome | github-find |
ID | blocadmfchabihonegcgjjikbbmpliph |
URL Oficial | https://chromewebstore.google.com/detail/github-find/blocadmfchabihonegcgjjikbbmpliph |
Descrição | A plugin for searcing within Github repos. |
Tamanho do Arquivo | 40.7 KB |
Contagem de Instalações | 164 |
Versão Atual | 1.0.2 |
Última Atualização | 2013-02-18 |
Data de Publicação | 2013-02-17 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Aidan Feldman |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/afeld/github-find |
URL da Página de Ajuda | https://github.com/afeld/github-find/issues |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "github-find", "version": "1.0.2", "manifest_version": 2, "icons": { "16": "favicon.ico" }, "description": "A plugin for searcing within Github repos.", "homepage_url": "https:\/\/github.com\/afeld\/github-find", "background": { "scripts": [ "jquery-1.9.1.min.js", "background.js" ], "persistent": false }, "page_action": { "default_icon": "favicon.ico", "default_title": "Click or press Ctrl+Shift+F to search this repository." }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/*" ], "exclude_globs": [ "*github.com\/*\/" ], "js": [ "jquery-1.9.1.min.js", "jquery.ui.position.min.js", "content-keydown.js" ] } ], "permissions": [ "tabs" ] } |