GIT by Native Extensions (Adam Cockell)

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

¿Qué es GIT by Native Extensions (Adam Cockell)?

GIT by Native Extensions (Adam Cockell) es una extensión de Chrome desarrollada por ATeam Technologies, y su función principal es "Download collaborator and commit information from git repositories (Github, GitLab, BitBucket) into an excel spreadsheet.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión GIT by Native Extensions (Adam Cockell)

Descarga archivos de extensión GIT by Native Extensions (Adam Cockell) en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre 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
Descripción Download collaborator and commit information from git repositories (Github, GitLab, BitBucket) into an excel spreadsheet.
Tamaño del Archivo 600 KB
Cantidad de Instalaciones 44
Versión Actual 0.0.4
Última Actualización 2024-03-01
Fecha de Publicación 2023-05-07
Desarrollador ATeam Technologies
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.nativecurrent.com
URL de la Página de Ayuda https://www.nativecurrent.com
URL de la Página de Política de Privacidad https://www.nativecurrent.com/privacy
Idiomas Soportados 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."
    }
}