Drag and Load

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

什么是Drag and Load?

Drag and Load是由max4two开发的Chrome扩展程序,该扩展的主要功能是“Download images on web pages by dragging them in any direction and dropping them.”。

下载Drag and Load扩展crx文件

下载Drag and Load扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Drag and Load Drag and Load
ID ogabdhanjefggbdoiifeekocmdkmbhob
官方URL https://chrome.google.com/webstore/detail/drag-and-load/ogabdhanjefggbdoiifeekocmdkmbhob
简介 Download images on web pages by dragging them in any direction and dropping them.
文件大小 171 KB
安装次数 153
当前版本 1.2
更新时间 2015-05-30
上架时间 2015-05-30
评分 5.00/5 共5次评分
开发者 max4two
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/joetm/Drag-and-Load
支持的语言 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"
    }
}