GitHub with a cape

Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!

O que é GitHub with a cape?

GitHub with a cape é uma extensão do Chrome desenvolvida por NicoSantangelo, e sua principal característica é "Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão GitHub with a cape

Baixe arquivos de extensão GitHub with a cape 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

                        All options can be turn on and off, it includes:

- Notifications modal
- Resizeable splitted diffs
- Add collapsable diffs
- Show All / Hide All buttons
- Show the current diff name on the sticky header
- Add collapsable commits
- Toggle contributions by clicking the added/deleted stats
- Show outdated diff comments by default
- Highlights the outdated diff icon (the X) on PRs                    

Informações Básicas da Extensão

Nome GitHub with a cape GitHub with a cape
ID ohkgmmldhbadfleajjafdeahmakbbcpi
URL Oficial https://chromewebstore.google.com/detail/github-with-a-cape/ohkgmmldhbadfleajjafdeahmakbbcpi
Descrição Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!
Tamanho do Arquivo 31.47 KB
Contagem de Instalações 22
Versão Atual 1.4.4
Última Atualização 2017-02-12
Data de Publicação 2017-02-11
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor NicoSantangelo
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github-with-a-cape.nicosantangelo.com/
URL da Página de Ajuda https://github.com/NicoSantangelo/github-with-a-cape/issues
URL da Página de Política de Privacidade https://github.com/nicosantangelo/portfolio/blob/master/PRIVACY.md
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub with a cape",
    "description": "Open source Chrome Extension which adds a bunch of new features to GitHub. Customize by picking the ones you like!",
    "short_name": "Github with a cape",
    "version": "1.4.4",
    "icons": {
        "18": "icons\/18.png",
        "19": "icons\/19.png",
        "38": "icons\/38.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.github.com\/*",
                "http:\/\/www.github.com\/*",
                "https:\/\/github.com\/*",
                "http:\/\/github.com\/*"
            ],
            "js": [
                "configuration.js",
                "notifications.js",
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "options_page": "options\/options.html",
    "options_ui": {
        "page": "options\/options.html"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "notifications.html"
    ]
}