GitHub Diff Explorer
The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests
O que é GitHub Diff Explorer?
GitHub Diff Explorer é uma extensão do Chrome desenvolvida por alexdodge, e sua principal característica é "The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GitHub Diff Explorer
Baixe arquivos de extensão GitHub Diff Explorer 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
This extension provides: - Dark mode styles for all supported browsers - More screen real estate with a full width view and resizable explorer - Improved review management and organization with collapsible folder views - Deep links to line references and review comments - Automatically marking viewed files in the folder view - Support for all other GitHub PR functionality
Informações Básicas da Extensão
Nome | GitHub Diff Explorer |
ID | kagcmhcnjehpeihgmcohmdceffihkglk |
URL Oficial | https://chromewebstore.google.com/detail/github-diff-explorer/kagcmhcnjehpeihgmcohmdceffihkglk |
Descrição | The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests |
Tamanho do Arquivo | 110 KB |
Contagem de Instalações | 256 |
Versão Atual | 1.3.0 |
Última Atualização | 2021-03-09 |
Data de Publicação | 2019-07-26 |
Classificação | 5.00/5 Total de 4 Avaliações |
Desenvolvedor | alexdodge |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://gde.alexdodge.ca/ |
URL da Página de Ajuda | https://github.com/alexmdodge/github-diff-explorer/issues |
URL da Página de Política de Privacidade | https://gde.alexdodge.ca/privacy-policy.html |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "default_locale": "en", "version": "1.3.0", "description": "The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests", "author": "Alex Dodge", "short_name": "GitHub Diff Explorer", "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "browser_action": { "default_icon": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "default_title": "GitHub Diff Explorer", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*" ], "css": [ "lib\/gde_styles.css" ], "js": [ "lib\/gde_script.js" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/github.com\/" ], "version_name": "1.3.0", "offline_enabled": true } |