Download panel

Adds a download panel to the Developer Tools.

Qu'est-ce que Download panel ?

Download panel est une extension Chrome développée par https://stefansundin.github.io, et sa fonction principale est "Adds a download panel to the Developer Tools.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Download panel

Téléchargez les fichiers d'extension Download panel au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Download panel Download panel
ID dfkcgjijchipieeogdonnjbhlhjphbfn
URL Officiel https://chromewebstore.google.com/detail/download-panel/dfkcgjijchipieeogdonnjbhlhjphbfn
Description Adds a download panel to the Developer Tools.
Taille du Fichier 27.05 KB
Nombre d'Installations 500
Version Actuelle 0.4.0
Dernière Mise à Jour 2023-07-21
Date de Publication 2019-09-15
Évaluation 3.75/5 Total 8 Évaluations
Développeur https://stefansundin.github.io
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/stefansundin/chrome-download-panel
Langues Prises en Charge 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"
}