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)是由ATeam Technologies開發的Chrome擴展程式,該擴展的主要功能是“Download collaborator and commit information from git repositories (Github, GitLab, BitBucket) into an excel spreadsheet.”。

擴展截圖

screenshot
screenshot

下載GIT by Native Extensions (Adam Cockell)擴展crx文件

下載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
官方網址 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."
    }
}