Extra GitHub PR Info
Edits to the GitHub UI to make it more informative
O que é Extra GitHub PR Info?
Extra GitHub PR Info é uma extensão do Chrome desenvolvida por Meta, e sua principal característica é "Edits to the GitHub UI to make it more informative".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Extra GitHub PR Info
Baixe arquivos de extensão Extra GitHub PR Info 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 collection of GitHub quality of life improvements: See https://github.com/driazati/github-extension for details
Informações Básicas da Extensão
Nome | Extra GitHub PR Info |
ID | pianlbphbcjkcghlboepagpoilanigff |
URL Oficial | https://chromewebstore.google.com/detail/extra-github-pr-info/pianlbphbcjkcghlboepagpoilanigff |
Descrição | Edits to the GitHub UI to make it more informative |
Tamanho do Arquivo | 38.37 KB |
Contagem de Instalações | 231 |
Versão Atual | 1.8.3 |
Última Atualização | 2021-09-30 |
Data de Publicação | 2020-03-11 |
Desenvolvedor | Meta |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/driazati/github-extension |
URL da Página de Ajuda | https://github.com/driazati/github-extension |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Extra GitHub PR Info", "short_name": "Extra GitHub PR Info", "description": "Edits to the GitHub UI to make it more informative", "version": "1.8.3", "author": "pytorch", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/pulls*", "*:\/\/github.com\/pulls*" ], "js": [ "lib.js", "show_build_status.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/github.com\/*" ], "js": [ "disable_pjax.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/github.com\/*\/*\/pull\/*", "*:\/\/github.com\/*\/*", "*:\/\/github.com\/*\/*\/commits\/*" ], "js": [ "lib.js", "unminimize_comments.js", "sort_signals.js", "remove_timeline_events.js", "expand_signals_box.js" ], "run_at": "document_start" }, { "matches": [ "*:\/\/github.com\/*\/*\/pull\/*\/files" ], "js": [ "lib.js", "reorder_code_reviews.js" ], "run_at": "document_start" } ], "background": { "scripts": [ "remove_cors.js" ], "persistent": true }, "permissions": [ "storage", "https:\/\/github.com\/*" ] } |