Asset Downloader

Extends the Developer Tools, adding a sidebar that allows images, fonts, stylesheets, and scripts to be batch downloaded.

Was ist Asset Downloader?

Asset Downloader ist eine Chrome-Erweiterung, die von Cory Caywood entwickelt wurde, und ihr Hauptmerkmal ist "Extends the Developer Tools, adding a sidebar that allows images, fonts, stylesheets, and scripts to be batch downloaded.".

Erweiterungsscreenshots

screenshot
screenshot

Asset Downloader-Erweiterungs-CRX-Datei herunterladen

Laden Sie Asset Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This is an extension for Chrome Developer Tools that will add a new tab panel called "Asset Downloader". Images, fonts, stylesheets, and scripts from the inspected page can be batch downloaded through the extension.

It will also find all links to images and fonts in the page's stylesheets, whether they are actually being used on the page or not. Images and fonts can also be previewed before they are downloaded. This can be particularly useful for fonts because the extension will find and show previews for all fonts.

All downloads will be saved to Chrome's default user download directory in a new folder that is unique for each inspected page.                    

Grundlegende Informationen zur Erweiterung

Name Asset Downloader Asset Downloader
ID iaejdgeeecpdmnnjnncnajkbagpoiikg
Offizielle URL https://chromewebstore.google.com/detail/asset-downloader/iaejdgeeecpdmnnjnncnajkbagpoiikg
Beschreibung Extends the Developer Tools, adding a sidebar that allows images, fonts, stylesheets, and scripts to be batch downloaded.
Dateigröße 83.89 KB
Installationsanzahl 4,000
Aktuelle Version 0.1.1
Letztes Update 2017-03-25
Veröffentlichungsdatum 2017-03-25
Bewertung 3.14/5 Insgesamt 7 Bewertungen
Entwickler Cory Caywood
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/corycaywood/chrome-asset-downloader
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Asset Downloader",
    "version": "0.1.1",
    "description": "Extends the Developer Tools, adding a sidebar that allows images, fonts, stylesheets, and scripts to be batch downloaded.",
    "devtools_page": "devtools.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "manifest_version": 2,
    "permissions": [
        "",
        "downloads"
    ]
}