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 |
ID | lknkfkffdokfodgfmcblomakemcbgomp |
官方網址 | 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" ] } |