Drag and Load

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

Drag and Loadคืออะไร?

Drag and Load เป็นส่วนขยายของ Chrome ที่พัฒนาโดย max4two และคุณลักษณะหลักของมันคือ "Download images on web pages by dragging them in any direction and dropping them."

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Drag and Load

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}