Download panel
Adds a download panel to the Developer Tools.
Download panelคืออะไร?
Download panel เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://stefansundin.github.io และคุณลักษณะหลักของมันคือ "Adds a download panel to the Developer Tools."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Download panel
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" } |