GitZip for github

It can make the sub-directories and files of github repository as zip and download it

GitZip for githubとは何ですか?

GitZip for githubはhttps://gitzip.orgによって開発されたChromeの拡張機能で、その主な機能は「It can make the sub-directories and files of github repository as zip and download it」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

GitZip for github拡張機能のCRXファイルをダウンロード

GitZip for github拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Why GitZip:
 - You DO NOT have to download the whole project just for those few files/folders you need.

Usage:
  1. Browse any Github repository page.
  2. Two ways to download:
     2.1. Choose the items:
        2.1.1. In default, you can double click on items or check the checkbox on the front of items.
        2.1.2. Click download button at the bottom-right of the page.
     2.2. In context menu:
        2.2.1. Click "GitZip Download" >  "Whole Repository" or "Current Folder".
        2.2.2. Move the mouse cursor on the item and click "GitZip Download" > "Selected Folder/File".
        2.2.3. Click "GitZip Download" >  "Checked Items" after doing 2-1-1.
  3. See the progress dashboard and wait for browser trigger download.
  4. Get the ZIP file.

Options:
   "How to select" for item selecting behaviour and "theme" for dark or light themes.

Get Token:
 - If you see the "Rate Limit" warning message on progress dashboard, you should get the Github API access token for upgrade rate limit. GitZip provide a convenient way for it:
  1. Click GitZip Extension icon on your browser.
  2. Click "Normal" or "Private" link beside "Get Token".
  3. Authorize GitZip permission on Github auth page.
  4. Back to repo page automatically.
  5. Continue to use.

About GA usage:
  Default GA (Google Analytics) collection. Technically, now we are unable to collect any other informations in Manifest V3 spec.

Support Us by donate:
  https://www.buymeacoffee.com/gitzip

Revision:
   1.0.3:
     Fix checkbox position in table cell.

   1.0.2:
     1. Compatible with new UI (In feature preview called: New Code Search and Code View)
     2. Fix a bug about saving personal token.

   1.0.1:
     1. Enhance popstate detection.
     2. Deprecate ".repository-content" selector for items detection.

   1.0.0:
     1. More download ways in context menu.
     2. Can change settings in options page for item selecting  behaviour and theme.
     3. Can use checkbox to select item.
     4. Migrate to Manifest V3 spec.

   0.4.3:
     Fix the error about folder can not be selected.

   0.4.2:
     1. Handle the dark mode.
     2. Fix the item detection lost during change page.

   0.4.1:
     Change the ways for fetching git_url, use link href instead of link id.

   0.4.0:
      Compatible with new Github UI.                    

拡張機能の基本情報

名前 GitZip for github GitZip for github
ID ffabmkklhbepgcgfonabamgnfafbdlkn
公式URL https://chromewebstore.google.com/detail/gitzip-for-github/ffabmkklhbepgcgfonabamgnfafbdlkn
説明 It can make the sub-directories and files of github repository as zip and download it
ファイルサイズ 365 KB
インストール数 122,994
現在のバージョン 1.0.3
最終更新日 2023-08-21
公開日 2020-07-01
評価 4.19/5 合計 155 レビュー
開発者 https://gitzip.org
Eメール [email protected]
支払い方法 free
ヘルプページのURL https://github.com/GitZip/chrome-extension
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GitZip for github",
    "description": "It can make the sub-directories and files of github repository as zip and download it",
    "version": "1.0.3",
    "icons": {
        "128": "images\/icon-128px.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage",
        "contextMenus"
    ],
    "host_permissions": [
        "https:\/\/api.github.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "js\/content\/jszip.min.js",
                "js\/content\/FileSaver.min.js",
                "js\/content\/main.js"
            ],
            "css": [
                "css\/main.css"
            ]
        },
        {
            "matches": [
                "*:\/\/kinolien.github.io\/gitzip\/*"
            ],
            "js": [
                "js\/content\/keysync.js"
            ]
        },
        {
            "matches": [
                "*:\/\/gitzip.org\/gettoken\/success"
            ],
            "js": [
                "js\/content\/autosave.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'; worker-src 'self'"
    }
}