Drag and Load

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

O que é Drag and Load?

Drag and Load é uma extensão do Chrome desenvolvida por max4two, e sua principal característica é "Download images on web pages by dragging them in any direction and dropping them.".

Baixar o arquivo CRX da Extensão Drag and Load

Baixe arquivos de extensão Drag and Load no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Drag and Load Drag and Load
ID ogabdhanjefggbdoiifeekocmdkmbhob
URL Oficial https://chrome.google.com/webstore/detail/drag-and-load/ogabdhanjefggbdoiifeekocmdkmbhob
Descrição Download images on web pages by dragging them in any direction and dropping them.
Tamanho do Arquivo 171 KB
Contagem de Instalações 153
Versão Atual 1.2
Última Atualização 2015-05-30
Data de Publicação 2015-05-30
Classificação 5.00/5 Total de 5 Avaliações
Desenvolvedor max4two
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/joetm/Drag-and-Load
Idiomas Suportados 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"
    }
}