GitHub File Diff
View diffs of files and directories on GitHub.
O que é GitHub File Diff?
GitHub File Diff é uma extensão do Chrome desenvolvida por https://akr.am, e sua principal característica é "View diffs of files and directories on GitHub.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GitHub File Diff
Baixe arquivos de extensão GitHub File 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
To use this extension, go to a file or directory in GitHub and click the **History** button. Then, click on any commit. The extension will override the click to show the diffs of only the relevant files instead of GitHub's default behavior of showing the entire commit's diff. This is especially helpful when a commit is very large and GitHub only shows a partial diff or none at all. To get the regular view, simply refresh the page.
Informações Básicas da Extensão
Nome | GitHub File Diff |
ID | lmhbkinmjbfihpkihjdhcagnigpklinh |
URL Oficial | https://chromewebstore.google.com/detail/github-file-diff/lmhbkinmjbfihpkihjdhcagnigpklinh |
Descrição | View diffs of files and directories on GitHub. |
Tamanho do Arquivo | 354 KB |
Contagem de Instalações | 153 |
Versão Atual | 1.1.9 |
Última Atualização | 2024-02-04 |
Data de Publicação | 2020-03-31 |
Desenvolvedor | https://akr.am |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Ajuda | https://github.com/mohd-akram/github-file-diff/issues |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub File Diff", "version": "1.1.9", "description": "View diffs of files and directories on GitHub.", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png", "256": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "vendor.css" ], "js": [ "vendor.js", "main.js" ] } ] } |