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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Magic Drop enables any webpage image and your Google Drive files to be drag and dropped into any other website."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

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

crx प्रारूप में Magic Drop एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": [
                ""
            ]
        }
    ]
}