Github Expand Diff
A user script for Chrome that allows you to expand the missing lines in a Github diff.
O que é Github Expand Diff?
Github Expand Diff é uma extensão do Chrome desenvolvida por Michael Ridgway, e sua principal característica é "A user script for Chrome that allows you to expand the missing lines in a Github diff.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Github Expand Diff
Baixe arquivos de extensão Github Expand Diff 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
Informações Básicas da Extensão
Nome | Github Expand Diff |
ID | imakbajpbolcgnkfhhlhipbjppfomlij |
URL Oficial | https://chromewebstore.google.com/detail/github-expand-diff/imakbajpbolcgnkfhhlhipbjppfomlij |
Descrição | A user script for Chrome that allows you to expand the missing lines in a Github diff. |
Tamanho do Arquivo | 5.63 KB |
Contagem de Instalações | 121 |
Versão Atual | 0.0.1.6 |
Última Atualização | 2014-06-18 |
Data de Publicação | 2014-06-18 |
Classificação | 3.86/5 Total de 7 Avaliações |
Desenvolvedor | Michael Ridgway |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/mridgway/github-expand-diff |
URL da Página de Ajuda | https://github.com/mridgway/github-expand-diff/issues |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Expand Diff", "version": "0.0.1.6", "description": "A user script for Chrome that allows you to expand the missing lines in a Github diff.", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/*.com\/*\/*\/pull\/*", "https:\/\/*.com\/*\/*\/commit\/*", "https:\/\/*.com\/*\/*\/compare\/*" ], "include_globs": [ "https:\/\/github.com\/*", "https:\/\/github.*.com\/*", "https:\/\/git.*.com\/*" ], "run_at": "document_end", "js": [ "github-expand-diff.user.js" ] } ] } |