Magic Copy

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

Qu'est-ce que Magic Copy ?

Magic Copy est une extension Chrome développée par kevmo314, et sa fonction principale est "A Chrome extension to add a 'Magic Copy' option to the context menu, which copies selective parts of the image.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Magic Copy

Téléchargez les fichiers d'extension Magic Copy au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Magic Copy Magic Copy
ID nnifclicibdhgakebbnbfmomniihfmkg
URL Officiel https://chromewebstore.google.com/detail/magic-copy/nnifclicibdhgakebbnbfmomniihfmkg
Description A Chrome extension to add a 'Magic Copy' option to the context menu, which copies selective parts of the image.
Taille du Fichier 17.32 MB
Nombre d'Installations 20,000
Version Actuelle 1.2.0
Dernière Mise à Jour 2023-04-30
Date de Publication 2023-04-27
Évaluation 3.76/5 Total 17 Évaluations
Développeur kevmo314
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/kevmo314/magic-copy
Langues Prises en Charge 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
    }
}