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