Mighty GitHub PRs

Restyle Pull Request screen for easier navigation and more focused review sessions.

O que é Mighty GitHub PRs?

Mighty GitHub PRs é uma extensão do Chrome desenvolvida por adam.graf, e sua principal característica é "Restyle Pull Request screen for easier navigation and more focused review sessions.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Mighty GitHub PRs

Baixe arquivos de extensão Mighty GitHub PRs 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 is an extension to restyle Pull Request screen for easier navigation and more focused review sessions in GitHub (public or any private/enterprise edition).

Main features:
- works on corporate enterprise domains, you just need to enable in the context menu of the extension in Chrome toolbar:
- shows file tree on the left hand side
- folders are collapsible
- folders are as concise as possible (if a folder containing on single folder it is merged with parent in visualization)
- deleted files are red and crossed through in file tree
- seen files become non-highlighted once seen
- only one single file's diff is shown if a file is selected from the tree
- large, visible Approve and Needs work buttons added ('Need work' button automatically adds a generic 'Please fix review items' comment.)
- clutter is reduced - elements on the top of the page is eliminated in the file navigation view to eliminate visual noise                    

Informações Básicas da Extensão

Nome Mighty GitHub PRs Mighty GitHub PRs
ID hopnfcjjghjpkfdiffabbpcpnhcpkceg
URL Oficial https://chromewebstore.google.com/detail/mighty-github-prs/hopnfcjjghjpkfdiffabbpcpnhcpkceg
Descrição Restyle Pull Request screen for easier navigation and more focused review sessions.
Tamanho do Arquivo 39.5 KB
Contagem de Instalações 118
Versão Atual 1.1.1
Última Atualização 2021-03-29
Data de Publicação 2019-11-12
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor adam.graf
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/netgrafe/mighty-github-prs
URL da Página de Ajuda https://github.com/netgrafe/mighty-github-prs
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mighty GitHub PRs",
    "version": "1.1.1",
    "description": "Restyle Pull Request screen for easier navigation and more focused review sessions.",
    "manifest_version": 2,
    "icons": {
        "48": "mighty-github-icon-48x48.png",
        "128": "mighty-github-icon-128x128.png",
        "192": "mighty-github-icon-192x192.png"
    },
    "browser_action": {
        "default_icon": {
            "48": "mighty-github-icon-48x48.png",
            "128": "mighty-github-icon-128x128.png",
            "192": "mighty-github-icon-192x192.png"
        }
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "*:\/\/*.github.com\/*"
    ],
    "optional_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "webext-permissions-events-polyfill.js",
            "webext-dynamic-content-scripts.js",
            "webext-domain-permission-toggle.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.github.com\/*"
            ],
            "css": [
                "pr-optimizer.css"
            ],
            "js": [
                "pr-optimizer.js"
            ]
        }
    ]
}