Developer's Download Helper

Download files and folders from GitHub or GitLab via context menu.

Developer's Download Helper란 무엇입니까?

Developer's Download Helper은(는) https://lezram.github.io/developers-download-helper-webext에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Download files and folders from GitHub or GitLab via context menu."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Developer's Download Helper 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This is an open source developer tool to make it easier to get files from code sharing platforms.
Use the right click context menu to easily download files.
Also self-hosted/enterprise instances can be configured in the options.                    

확장 프로그램 기본 정보

이름 Developer's Download Helper Developer's Download Helper
ID apchbjkblfhmkohghpnhidldebmpmjnn
공식 URL https://chromewebstore.google.com/detail/developers-download-helpe/apchbjkblfhmkohghpnhidldebmpmjnn
설명 Download files and folders from GitHub or GitLab via context menu.
파일 크기 156 KB
설치 횟수 1,579
현재 버전 0.3.0
최근 업데이트 2021-06-03
출시 날짜 2020-05-15
평점 4.60/5 총 5 개의 평점
개발자 https://lezram.github.io/developers-download-helper-webext
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/lezram/developers-download-helper-webext
도움말 페이지 URL https://github.com/lezram/developers-download-helper-webext/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Developer's Download Helper",
    "short_name": "DeDoHe",
    "version": "0.3.0",
    "description": "Download files and folders from GitHub or GitLab via context menu.",
    "homepage_url": "https:\/\/github.com\/lezram\/developers-download-helper-webext",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon-48.png",
        "default_title": "Developer's Download Helper"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "downloads",
        "storage",
        "notifications",
        "https:\/\/*.github.com\/*",
        "https:\/\/*.githubusercontent.com\/*",
        "https:\/\/gitlab.com\/*"
    ],
    "optional_permissions": [
        ""
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    }
}