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 |
公式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 |
Eメール | [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" ] } |