Holberton File Downloader

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

Holberton File Downloader क्या है?

Holberton File Downloader keysmusician द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The fast and convenient way to create Holberton School project files."।

एक्सटेंशन स्क्रीनशॉट्स

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Holberton File Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    ]
}