Holberton File Downloader

The fast and convenient way to create Holberton School project files.

什么是Holberton File Downloader?

Holberton File Downloader是由keysmusician开发的Chrome扩展程序,该扩展的主要功能是“The fast and convenient way to create Holberton School project files.”。

扩展截图

下载Holberton File Downloader扩展crx文件

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

扩展使用说明

                        Holberton File Downloader is a convenience for Holberton School students to quickly create project files. In a few clicks, students can easily create all project files including pre-filled main files and save them to a directory of their choice. Let Holberton File Downloader spare you the tedium of manual file creation and get back to the real problem solving!

To download files, navigate to any Holberton School project page, simply click the extension icon, then "Download" (or "Download as..." to choose the download location).

v1.3:
- Migrated to Manifest V3

v1.2:
- "Find files" was removed; Files will be found automatically when the extension loads
- Bug fixes                    

扩展基本信息

名称 Holberton File Downloader Holberton File Downloader
ID lknkfkffdokfodgfmcblomakemcbgomp
官方URL https://chromewebstore.google.com/detail/holberton-file-downloader/lknkfkffdokfodgfmcblomakemcbgomp
简介 The fast and convenient way to create Holberton School project files.
文件大小 41.18 KB
安装次数 41
当前版本 1.3
更新时间 2023-08-31
上架时间 2022-01-18
评分 5.00/5 共2次评分
开发者 keysmusician
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/keysmusician/holberton-file-downloader-browser-extension
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Holberton File Downloader",
    "description": "The fast and convenient way to create Holberton School project files.",
    "version": "1.3",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "minimum_chrome_version": "92",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/intranet.hbtn.io\/*"
            ],
            "js": [
                "lib\/browser-polyfill.min.js",
                "content_script.js"
            ]
        }
    ],
    "action": {
        "default_icon": "Holberton File Downloader.png",
        "default_popup": "popup.html",
        "default_title": "Holberton File Downloader"
    },
    "permissions": [
        "activeTab",
        "downloads",
        "offscreen"
    ]
}