Developer's Download Helper

Download files and folders from GitHub or GitLab via context menu.

Was ist Developer's Download Helper?

Developer's Download Helper ist eine Chrome-Erweiterung, die von https://lezram.github.io/developers-download-helper-webext entwickelt wurde, und ihr Hauptmerkmal ist "Download files and folders from GitHub or GitLab via context menu.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Developer's Download Helper-Erweiterungs-CRX-Datei herunterladen

Laden Sie Developer's Download Helper-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This is an open source developer tool to make it easier to get files from code sharing platforms.
Use the right click context menu to easily download files.
Also self-hosted/enterprise instances can be configured in the options.                    

Grundlegende Informationen zur Erweiterung

Name Developer's Download Helper Developer's Download Helper
ID apchbjkblfhmkohghpnhidldebmpmjnn
Offizielle URL https://chromewebstore.google.com/detail/developers-download-helpe/apchbjkblfhmkohghpnhidldebmpmjnn
Beschreibung Download files and folders from GitHub or GitLab via context menu.
Dateigröße 156 KB
Installationsanzahl 1,579
Aktuelle Version 0.3.0
Letztes Update 2021-06-03
Veröffentlichungsdatum 2020-05-15
Bewertung 4.60/5 Insgesamt 5 Bewertungen
Entwickler https://lezram.github.io/developers-download-helper-webext
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/lezram/developers-download-helper-webext
Hilfeseite URL https://github.com/lezram/developers-download-helper-webext/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Developer's Download Helper",
    "short_name": "DeDoHe",
    "version": "0.3.0",
    "description": "Download files and folders from GitHub or GitLab via context menu.",
    "homepage_url": "https:\/\/github.com\/lezram\/developers-download-helper-webext",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon-48.png",
        "default_title": "Developer's Download Helper"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "activeTab",
        "contextMenus",
        "downloads",
        "storage",
        "notifications",
        "https:\/\/*.github.com\/*",
        "https:\/\/*.githubusercontent.com\/*",
        "https:\/\/gitlab.com\/*"
    ],
    "optional_permissions": [
        ""
    ],
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "57.0"
        }
    }
}