Drag and Load

Download images on web pages by dragging them in any direction and dropping them.

Was ist Drag and Load?

Drag and Load ist eine Chrome-Erweiterung, die von max4two entwickelt wurde, und ihr Hauptmerkmal ist "Download images on web pages by dragging them in any direction and dropping them.".

Drag and Load-Erweiterungs-CRX-Datei herunterladen

Laden Sie Drag and Load-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

                        Download images via drag and drop. Drag the image to any direction and let it go.
The image will be downloaded to Chrome's default download location.
Works on all images of the following file types: jpg, jpeg, jpe, gif, png.

Changelog:

v1.2:
The minimum image size can now be configured in the extension's options. Only images with a size greater than this width and height will be downloaded when dragged.
This helps to prevent the accidental download of thumbnail images.

v1.1:
Support for webp was dropped (because from time to time, I ended up downloading thumbnails on youtube).

v1.0:
Initial release                    

Grundlegende Informationen zur Erweiterung

Name Drag and Load Drag and Load
ID ogabdhanjefggbdoiifeekocmdkmbhob
Offizielle URL https://chrome.google.com/webstore/detail/drag-and-load/ogabdhanjefggbdoiifeekocmdkmbhob
Beschreibung Download images on web pages by dragging them in any direction and dropping them.
Dateigröße 171 KB
Installationsanzahl 153
Aktuelle Version 1.2
Letztes Update 2015-05-30
Veröffentlichungsdatum 2015-05-30
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler max4two
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/joetm/Drag-and-Load
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Drag and Load",
    "description": "Download images on web pages by dragging them in any direction and dropping them.",
    "version": "1.2",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "permissions": [
        "",
        "storage"
    ],
    "homepage_url": "http:\/\/komasurfer.com\/",
    "content_scripts": [
        {
            "js": [
                "zepto.min.js",
                "images.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "16.png",
        "19": "19.png",
        "48": "48.png",
        "128": "128.png"
    }
}