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