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文件

下载Developer's Download Helper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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