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」です。
拡張機能のスクリーンショット
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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
}
} | |