GIT by Native Extensions (Adam Cockell)

Download collaborator and commit information from git repositories (Github, GitLab, BitBucket) into an excel spreadsheet.

O que é GIT by Native Extensions (Adam Cockell)?

GIT by Native Extensions (Adam Cockell) é uma extensão do Chrome desenvolvida por ATeam Technologies, e sua principal característica é "Download collaborator and commit information from git repositories (Github, GitLab, BitBucket) into an excel spreadsheet.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão GIT by Native Extensions (Adam Cockell)

Baixe arquivos de extensão GIT by Native Extensions (Adam Cockell) 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

                        In today's world, software is everywhere and developers are in demand.  This Chrome extension makes it easy to source great talent from open source projects on sites like Github, GitLab, and BitBucket by giving you the ability to download the entire commit contribution history to an excel sheet with a single click.  This extension gives you access to who did what on every open source software project, and includes the email address that they associated with their work.

I have open sourced this extension to share it freely and allow for further customization.  Here's the source: https://github.com/Native-Current/git-to-excel                    

Informações Básicas da Extensão

Nome GIT by Native Extensions (Adam Cockell) GIT by Native Extensions (Adam Cockell)
ID hmkflfcoeccgkgignhfpbhnbjkjgembm
URL Oficial https://chromewebstore.google.com/detail/git-by-native-extensions/hmkflfcoeccgkgignhfpbhnbjkjgembm
Descrição Download collaborator and commit information from git repositories (Github, GitLab, BitBucket) into an excel spreadsheet.
Tamanho do Arquivo 600 KB
Contagem de Instalações 44
Versão Atual 0.0.4
Última Atualização 2024-03-01
Data de Publicação 2023-05-07
Desenvolvedor ATeam Technologies
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.nativecurrent.com
URL da Página de Ajuda https://www.nativecurrent.com
URL da Página de Política de Privacidade https://www.nativecurrent.com/privacy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GIT by Native Extensions (Adam Cockell)",
    "description": "Download collaborator and commit information from git repositories (Github, GitLab, BitBucket) into an excel spreadsheet.",
    "version": "0.0.4",
    "icons": {
        "16": "icon.png",
        "128": "icon.png"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [],
    "permissions": [
        "activeTab",
        "downloads",
        "offscreen"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "includes\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "action": {
        "default_title": "Click this icon on a git repository to download contributions to an excel file.\nHover over this to view download progress."
    }
}