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开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension to add a 'Magic Copy' option to the context menu, which copies selective parts of the image.”。

扩展截图

screenshot

下载Magic Copy扩展crx文件

下载Magic Copy扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
    }
}