Download Manager

A less intrusive way to access your recent downloads

Cos'è Download Manager?

Download Manager è un'estensione di Chrome sviluppata da https://james-coyle.dev, e la sua funzione principale è "A less intrusive way to access your recent downloads".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Download Manager

Scarica i file di estensione Download Manager in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Download Manager Download Manager
ID epgkpmpjileiepinlphboolabkkdelle
URL Ufficiale https://chromewebstore.google.com/detail/download-manager/epgkpmpjileiepinlphboolabkkdelle
Descrizione A less intrusive way to access your recent downloads
Dimensione del File 38.36 KB
Conteggio Installazioni 29,091
Versione Corrente 4.1.1
Ultimo Aggiornamento 2023-11-15
Data di Pubblicazione 2017-09-12
Valutazione 4.06/5 Totale 79 Valutazioni
Sviluppatore https://james-coyle.dev
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/JamesCoyle/downloads-extention
URL della Pagina di Aiuto https://github.com/JamesCoyle/downloads-extention/issues
Lingue Supportate 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"
    }
}