Download panel
Adds a download panel to the Developer Tools.
Download panelとは何ですか?
Download panelはhttps://stefansundin.github.ioによって開発されたChromeの拡張機能で、その主な機能は「Adds a download panel to the Developer Tools.」です。
拡張機能のスクリーンショット
Download panel拡張機能のCRXファイルをダウンロード
Download panel拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension adds a download panel to the Chrome Developer Tools. With it, you can easily discover and download the resources that the webpage loads. It captures network request info and lets you easily grab links from the webpage. You can filter the results with a regex and/or a minimum file size. You can then download all of the filtered URLs with a single click. Source code: https://github.com/stefansundin/chrome-download-panel
拡張機能の基本情報
名前 | Download panel |
ID | dfkcgjijchipieeogdonnjbhlhjphbfn |
公式URL | https://chromewebstore.google.com/detail/download-panel/dfkcgjijchipieeogdonnjbhlhjphbfn |
説明 | Adds a download panel to the Developer Tools. |
ファイルサイズ | 27.05 KB |
インストール数 | 500 |
現在のバージョン | 0.4.0 |
最終更新日 | 2023-07-21 |
公開日 | 2019-09-15 |
評価 | 3.75/5 合計 8 レビュー |
開発者 | https://stefansundin.github.io |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/stefansundin/chrome-download-panel |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Download panel", "version": "0.4.0", "description": "Adds a download panel to the Developer Tools.", "homepage_url": "https:\/\/github.com\/stefansundin\/chrome-download-panel", "author": "Stefan Sundin", "icons": { "16": "img\/icon16.png", "32": "img\/icon32.png", "48": "img\/icon48.png", "128": "img\/icon128.png", "256": "img\/icon256.png" }, "background": { "service_worker": "sw.js" }, "devtools_page": "devtools.html", "options_ui": { "page": "options.html" }, "action": { "default_icon": { "38": "img\/icon38.png" }, "default_popup": "options.html" }, "permissions": [ "downloads", "clipboardRead", "storage" ], "minimum_chrome_version": "96" } |