Magic Copy

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

O que é Magic Copy?

Magic Copy é uma extensão do Chrome desenvolvida por kevmo314, e sua principal característica é "A Chrome extension to add a 'Magic Copy' option to the context menu, which copies selective parts of the image.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Magic Copy

Baixe arquivos de extensão Magic Copy no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Magic Copy Magic Copy
ID nnifclicibdhgakebbnbfmomniihfmkg
URL Oficial https://chromewebstore.google.com/detail/magic-copy/nnifclicibdhgakebbnbfmomniihfmkg
Descrição A Chrome extension to add a 'Magic Copy' option to the context menu, which copies selective parts of the image.
Tamanho do Arquivo 17.32 MB
Contagem de Instalações 20,000
Versão Atual 1.2.0
Última Atualização 2023-04-30
Data de Publicação 2023-04-27
Classificação 3.76/5 Total de 17 Avaliações
Desenvolvedor kevmo314
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/kevmo314/magic-copy
Idiomas Suportados 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
    }
}