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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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."
    }
}