Developer's Download Helper

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

Τι είναι το Developer's Download Helper;

Το Developer's Download Helper είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://lezram.github.io/developers-download-helper-webext, και η κύρια λειτουργία του είναι "Download files and folders from GitHub or GitLab via context menu.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Developer's Download Helper

Λήψη αρχείων επέκτασης Developer's Download Helper σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Developer's Download Helper Developer's Download Helper
ID apchbjkblfhmkohghpnhidldebmpmjnn
Επίσημο URL https://chromewebstore.google.com/detail/developers-download-helpe/apchbjkblfhmkohghpnhidldebmpmjnn
Περιγραφή Download files and folders from GitHub or GitLab via context menu.
Μέγεθος Αρχείου 156 KB
Αριθμός Εγκαταστάσεων 1,579
Τρέχουσα Έκδοση 0.3.0
Τελευταία Ενημέρωση 2021-06-03
Ημερομηνία Δημοσίευσης 2020-05-15
Αξιολόγηση 4.60/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής https://lezram.github.io/developers-download-helper-webext
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/lezram/developers-download-helper-webext
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/lezram/developers-download-helper-webext/issues
Υποστηριζόμενες Γλώσσες 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"
        }
    }
}