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
Eメール [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
    }
}