Developer's Download Helper

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

Wat is Developer's Download Helper?

Developer's Download Helper is een Chrome-extensie ontwikkeld door https://lezram.github.io/developers-download-helper-webext, en de belangrijkste functie is "Download files and folders from GitHub or GitLab via context menu.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Developer's Download Helper

Download Developer's Download Helper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Developer's Download Helper Developer's Download Helper
ID apchbjkblfhmkohghpnhidldebmpmjnn
Officiële URL https://chromewebstore.google.com/detail/developers-download-helpe/apchbjkblfhmkohghpnhidldebmpmjnn
Beschrijving Download files and folders from GitHub or GitLab via context menu.
Bestandsgrootte 156 KB
Aantal Installaties 1,579
Huidige Versie 0.3.0
Laatst Bijgewerkt 2021-06-03
Publicatiedatum 2020-05-15
Beoordeling 4.60/5 Totaal 5 Beoordelingen
Ontwikkelaar https://lezram.github.io/developers-download-helper-webext
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/lezram/developers-download-helper-webext
Help Pagina-URL https://github.com/lezram/developers-download-helper-webext/issues
Ondersteunde Talen 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"
        }
    }
}