Magic Drop

Magic Drop enables any webpage image and your Google Drive files to be drag and dropped into any other website.

Magic Dropคืออะไร?

Magic Drop เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Moe Bazzi และคุณลักษณะหลักของมันคือ "Magic Drop enables any webpage image and your Google Drive files to be drag and dropped into any other website."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Magic Drop

ดาวน์โหลดไฟล์ส่วนขยาย Magic Drop ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Are you a designer, creator, editor or anyone that downloads and uploads lots of images/files in their web browser?

Magic Drop enables dragging and dropping images from any websites like Unsplash, Pexels, or Google Images, into any other website, so you can maintain a productive and speedy workflow. It even lets you drag & drop files from your Google Drive website into any other website. Support for other apps such as OneDrive, Dropbox and more coming in the future as well.

To speed up your workflow even more, shake your mouse while dragging a photo/file to automatically jump to the tab you were previously working in, so you can just easily drop the file without having to manually navigate back to the tab.

Cool right? Its like Magic. Give it a try!

Magic Drop is still in early development, so feel free to reach out if you have any issues or suggestions, thank you :)

- Moe, just a dude trying to make the internet browser the most fun and productive place to get work done.

Find me on twitter @moe__bazzi                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Magic Drop Magic Drop
ID ogbbepddobacadohbfbpmhjomfjmbken
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/magic-drop/ogbbepddobacadohbfbpmhjomfjmbken
คำอธิบาย Magic Drop enables any webpage image and your Google Drive files to be drag and dropped into any other website.
ขนาดไฟล์ 78.53 KB
จำนวนการติดตั้ง 273
เวอร์ชันปัจจุบัน 0.0.5
อัปเดตครั้งล่าสุด 2022-09-07
วันที่เผยแพร่ 2022-08-14
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Moe Bazzi
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Magic Drop enables any webpage image and your Google Drive files to be drag and dropped into any other website.",
    "version": "0.0.5",
    "name": "Magic Drop",
    "icons": {
        "32": "assets\/file-32.png",
        "128": "assets\/file-128.png"
    },
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "mainApp.js",
                "runtimeProxy.js"
            ],
            "run_at": "document_start",
            "match_about_blank": true,
            "all_frames": true
        }
    ],
    "permissions": [
        "downloads",
        "storage",
        "scripting"
    ],
    "host_permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "background": {
        "service_worker": "mainServiceWorker.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/*",
                "webkitGetAsEntry.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}