Developer's Download Helper

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

Developer's Download Helper là gì?

Developer's Download Helper là một tiện ích mở rộng Chrome được phát triển bởi https://lezram.github.io/developers-download-helper-webext, và tính năng chính của nó là "Download files and folders from GitHub or GitLab via context menu.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Developer's Download Helper

Tải xuống các tệp mở rộng Developer's Download Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Developer's Download Helper Developer's Download Helper
ID apchbjkblfhmkohghpnhidldebmpmjnn
URL Chính Thức https://chromewebstore.google.com/detail/developers-download-helpe/apchbjkblfhmkohghpnhidldebmpmjnn
Mô tả Download files and folders from GitHub or GitLab via context menu.
Kích Thước Tệp 156 KB
Số Lần Cài Đặt 1,579
Phiên Bản Hiện Tại 0.3.0
Cập Nhật Lần Cuối 2021-06-03
Ngày Phát Hành 2020-05-15
Đánh Giá 4.60/5 Tổng số 5 Đánh Giá
Nhà Phát Triển https://lezram.github.io/developers-download-helper-webext
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/lezram/developers-download-helper-webext
URL Trang Trợ Giúp https://github.com/lezram/developers-download-helper-webext/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}