Magic Copy

Magic Copy

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

Merlin
Additional files are visible only to premium users

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": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "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": [
        "<all_urls>"
      ],
      "use_dynamic_url": true
    }
  ],
  "sandbox": {
    "pages": [
      "sandbox.html"
    ]
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  }
}