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은(는) Moe Bazzi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Magic Drop enables any webpage image and your Google Drive files to be drag and dropped into any other website."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Magic Drop 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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": [
                ""
            ]
        }
    ]
}