GIT by Native Extensions (Adam Cockell)

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

Was ist GIT by Native Extensions (Adam Cockell)?

GIT by Native Extensions (Adam Cockell) ist eine Chrome-Erweiterung, die von ATeam Technologies entwickelt wurde, und ihr Hauptmerkmal ist "Download collaborator and commit information from git repositories (Github, GitLab, BitBucket) into an excel spreadsheet.".

Erweiterungsscreenshots

screenshot
screenshot

GIT by Native Extensions (Adam Cockell)-Erweiterungs-CRX-Datei herunterladen

Laden Sie GIT by Native Extensions (Adam Cockell)-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name GIT by Native Extensions (Adam Cockell) GIT by Native Extensions (Adam Cockell)
ID hmkflfcoeccgkgignhfpbhnbjkjgembm
Offizielle URL https://chromewebstore.google.com/detail/git-by-native-extensions/hmkflfcoeccgkgignhfpbhnbjkjgembm
Beschreibung Download collaborator and commit information from git repositories (Github, GitLab, BitBucket) into an excel spreadsheet.
Dateigröße 600 KB
Installationsanzahl 44
Aktuelle Version 0.0.4
Letztes Update 2024-03-01
Veröffentlichungsdatum 2023-05-07
Entwickler ATeam Technologies
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.nativecurrent.com
Hilfeseite URL https://www.nativecurrent.com
URL der Datenschutzrichtlinien-Seite https://www.nativecurrent.com/privacy
Unterstützte Sprachen 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."
    }
}