Download Manager

A less intrusive way to access your recent downloads

什麼是Download Manager?

Download Manager是由https://james-coyle.dev開發的Chrome擴展程式,該擴展的主要功能是“A less intrusive way to access your recent downloads”。

擴展截圖

screenshot
screenshot
screenshot

下載Download Manager擴展crx文件

下載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
官方網址 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"
    }
}