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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 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" ] } |