Drag and Load

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

Drag and Load क्या है?

Drag and Load max4two द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Download images on web pages by dragging them in any direction and dropping them."।

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Drag and Load एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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