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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
    }
}