Gitd Download Manager

Download at Github,Bitbucket,Gitlab,Gitea repository's selected files, folders as a zip file with a single click, without api token.

Gitd Download Managerคืออะไร?

Gitd Download Manager เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://gitdownloadmanager.com และคุณลักษณะหลักของมันคือ "Download at Github,Bitbucket,Gitlab,Gitea repository's selected files, folders as a zip file with a single click, without api token."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gitd Download Manager

ดาวน์โหลดไฟล์ส่วนขยาย Gitd Download Manager ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Gitd Download Manager, allows you to download only the files/folders you want without having to download all of the public repository. Github.com, Bitbucket.org, Gitlab.com, Gitea.com provides all of the public repos in git services to download selected files and folders as a zip files with a single click, without the need for any API key or token.

If you see "Gitd Start" button, It is ready for use on every screen you see. You have to to click (checkboxes appears) and can starting to select files.

## Features
- Support only Github.com, Bitbucket.org, Gitlab.com, Gitea.com public repositories page
- Not neeeded ApiKey/ApiToken
- Support single or multiple files download
- Download selected contents as a zip file with one click
- Support all branches
- Maximum Selection Limit: 10
- Maximum Download Files: 10000 

## Next Features
- Support Gitea.com service (near future)
- No limitations for selection and downloading files count
- Support branch names with includes slash
- Support Bitbucket.org commitId url (Maybe)

## Support
Website: https://gitdownloadmanager.com
Github Organization: https://github.com/git-download-manager

### History

v1.0.6

- adds Gitea.com service
- increases selection limit and files
- removes auto initialize all of the services. (excepts Github.com)
- removes Github.com turbo event listeners

v1.0.5
- fixes checkboxes not working when browser back event
- adds auto initialize all of the supported services (no longer need to press the Gitd Start button)
- removes Github.com turbo event listeners

> Note: Gitd Download Manager browser extension creates download lists using Gitdownloadmanager.com api service.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Gitd Download Manager Gitd Download Manager
ID cbnplpkljokdodpligcaolkmodfondhl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gitd-download-manager/cbnplpkljokdodpligcaolkmodfondhl
คำอธิบาย Download at Github,Bitbucket,Gitlab,Gitea repository's selected files, folders as a zip file with a single click, without api token.
ขนาดไฟล์ 68.48 KB
จำนวนการติดตั้ง 183
เวอร์ชันปัจจุบัน 1.0.6
อัปเดตครั้งล่าสุด 2023-09-06
วันที่เผยแพร่ 2022-09-25
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://gitdownloadmanager.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://gitdownloadmanager.com
URL หน้าช่วยเหลือ https://gitdownloadmanager.com/contact-me
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Gitd Download Manager",
    "short_name": "Gitd",
    "description": "Download at Github,Bitbucket,Gitlab,Gitea repository's selected files, folders as a zip file with a single click, without api token.",
    "version": "1.0.6",
    "homepage_url": "https:\/\/github.com\/git-download-manager\/gitd-extension",
    "permissions": [
        "webNavigation",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/api.gitdownloadmanager.com\/*"
    ],
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "128": "icons\/128.png"
    },
    "author": "Uretgec",
    "offline_enabled": false,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*",
                "*:\/\/gitlab.com\/*",
                "*:\/\/bitbucket.org\/*",
                "*:\/\/gitea.com\/*"
            ],
            "css": [
                "gitdStyles.css"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "*:\/\/github.com\/*",
                "*:\/\/gitlab.com\/*",
                "*:\/\/bitbucket.org\/*",
                "*:\/\/gitea.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "lib\/alpine-scp.min.js",
                "lib\/fflate.min.js",
                "lib\/gitdmanager.js"
            ],
            "matches": [
                "*:\/\/github.com\/*",
                "*:\/\/gitlab.com\/*",
                "*:\/\/bitbucket.org\/*",
                "*:\/\/gitea.com\/*"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/api.gitdownloadmanager.com\/*"
        ]
    }
}