Download Manager

A less intrusive way to access your recent downloads

Τι είναι το Download Manager;

Το Download Manager είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://james-coyle.dev, και η κύρια λειτουργία του είναι "A less intrusive way to access your recent downloads".

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

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Download Manager

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

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

                        Replaces the chrome downloads bar with a toolbar icon. The popup is styled to look like the new extensions menu for a more native feel. 

FEATURES

- Access your download list at any time from the chrome toolbar
- Option to display in the browser sidebar
- Quickly search recent downloads
- Badge count to show download status at a glance
- Pause and resume downloads easily
- Clear downloads from your history
- Delete downloaded files from the popup
- Open file in default application
- Open file in browser
- Open folder which contains the file
- Quick link to chrome downloads page
- Notification when your download completes


INSTRUCTIONS

Hold Ctrl to change the secondary download actions.
Alt-J opens the popup.                    

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

Όνομα Download Manager Download Manager
ID epgkpmpjileiepinlphboolabkkdelle
Επίσημο URL https://chromewebstore.google.com/detail/download-manager/epgkpmpjileiepinlphboolabkkdelle
Περιγραφή A less intrusive way to access your recent downloads
Μέγεθος Αρχείου 38.36 KB
Αριθμός Εγκαταστάσεων 29,091
Τρέχουσα Έκδοση 4.1.1
Τελευταία Ενημέρωση 2023-11-15
Ημερομηνία Δημοσίευσης 2017-09-12
Αξιολόγηση 4.06/5 Συνολικά 79 Αξιολογήσεις
Προγραμματιστής https://james-coyle.dev
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/JamesCoyle/downloads-extention
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/JamesCoyle/downloads-extention/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Download Manager",
    "version": "4.1.1",
    "short_name": "Downloads",
    "author": "James Coyle",
    "description": "A less intrusive way to access your recent downloads",
    "icons": {
        "512": "icon.png"
    },
    "permissions": [
        "downloads",
        "downloads.open",
        "downloads.shelf",
        "storage",
        "sidePanel"
    ],
    "optional_permissions": [
        "notifications"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "Downloads"
    },
    "options_page": "options.html",
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Alt+J",
                "mac": "Alt+J",
                "chromeos": "Alt+J",
                "linux": "Alt+J"
            }
        }
    },
    "background": {
        "type": "module",
        "service_worker": "background.js"
    },
    "side_panel": {
        "default_path": "sidePanel.html"
    }
}