GIT by Native Extensions (Adam Cockell)

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

Τι είναι το GIT by Native Extensions (Adam Cockell);

Το GIT by Native Extensions (Adam Cockell) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ATeam Technologies, και η κύρια λειτουργία του είναι "Download collaborator and commit information from git repositories (Github, GitLab, BitBucket) into an excel spreadsheet.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης GIT by Native Extensions (Adam Cockell)

Λήψη αρχείων επέκτασης GIT by Native Extensions (Adam Cockell) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα GIT by Native Extensions (Adam Cockell) GIT by Native Extensions (Adam Cockell)
ID hmkflfcoeccgkgignhfpbhnbjkjgembm
Επίσημο URL https://chromewebstore.google.com/detail/git-by-native-extensions/hmkflfcoeccgkgignhfpbhnbjkjgembm
Περιγραφή Download collaborator and commit information from git repositories (Github, GitLab, BitBucket) into an excel spreadsheet.
Μέγεθος Αρχείου 600 KB
Αριθμός Εγκαταστάσεων 44
Τρέχουσα Έκδοση 0.0.4
Τελευταία Ενημέρωση 2024-03-01
Ημερομηνία Δημοσίευσης 2023-05-07
Προγραμματιστής ATeam Technologies
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.nativecurrent.com
Διεύθυνση URL της Σελίδας Βοήθειας https://www.nativecurrent.com
URL της Σελίδας Πολιτικής Απορρήτου https://www.nativecurrent.com/privacy
Υποστηριζόμενες Γλώσσες 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."
    }
}