Download panel

Adds a download panel to the Developer Tools.

Download panel क्या है?

Download panel https://stefansundin.github.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a download panel to the Developer Tools."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Download panel एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}