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."입니다.

확장 프로그램 스크린샷

screenshot

Download panel 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
}