Download panel
Adds a download panel to the Developer Tools.
Download panel là gì?
Download panel là một tiện ích mở rộng Chrome được phát triển bởi https://stefansundin.github.io, và tính năng chính của nó là "Adds a download panel to the Developer Tools.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Download panel
Tải xuống các tệp mở rộng Download panel dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Download panel |
ID | dfkcgjijchipieeogdonnjbhlhjphbfn |
URL Chính Thức | https://chromewebstore.google.com/detail/download-panel/dfkcgjijchipieeogdonnjbhlhjphbfn |
Mô tả | Adds a download panel to the Developer Tools. |
Kích Thước Tệp | 27.05 KB |
Số Lần Cài Đặt | 500 |
Phiên Bản Hiện Tại | 0.4.0 |
Cập Nhật Lần Cuối | 2023-07-21 |
Ngày Phát Hành | 2019-09-15 |
Đánh Giá | 3.75/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | https://stefansundin.github.io |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/stefansundin/chrome-download-panel |
Ngôn Ngữ Được Hỗ Trợ | 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" } |