Magic Copy

A Chrome extension to add a 'Magic Copy' option to the context menu, which copies selective parts of the image.

Magic Copy क्या है?

Magic Copy kevmo314 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension to add a 'Magic Copy' option to the context menu, which copies selective parts of the image."।

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

screenshot

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

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

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

                        Ever wanted to copy just you and erase the background? Now you can directly in Chrome with Magic Copy! Powered by Meta's Segment Anything Model (SAM), Magic Copy edits your images right before you copy them.                    

एक्सटेंशन की मूल जानकारी

नाम Magic Copy Magic Copy
ID nnifclicibdhgakebbnbfmomniihfmkg
आधिकारिक URL https://chromewebstore.google.com/detail/magic-copy/nnifclicibdhgakebbnbfmomniihfmkg
विवरण A Chrome extension to add a 'Magic Copy' option to the context menu, which copies selective parts of the image.
फ़ाइल का आकार 17.32 MB
स्थापना संख्या 20,000
वर्तमान संस्करण 1.2.0
अंतिम अपडेट 2023-04-30
प्रकाशन तिथि 2023-04-27
रेटिंग 3.76/5 कुल 17 रेटिंग्स
डेवलपर kevmo314
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/kevmo314/magic-copy
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Magic Copy",
    "description": "A Chrome extension to add a 'Magic Copy' option to the context menu, which copies selective parts of the image.",
    "version": "1.2.0",
    "manifest_version": 3,
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "contextMenus",
        "storage",
        "file:\/\/\/*"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content_script.js"
            ],
            "match_about_blank": true
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "sandbox.html",
                "interactive_module_quantized_592547_2023_03_19_sam6_long_uncertain.onnx",
                "ort-wasm-simd-threaded.wasm",
                "ort-wasm-simd.wasm",
                "ort-wasm-threaded.wasm",
                "ort-wasm.wasm"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ],
    "sandbox": {
        "pages": [
            "sandbox.html"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}