Groove Cloner

Groove Cloner

Clone any funnel in a second.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Groove Cloner",
  "version": "1.0.53",
  "description": "Clone any funnel in a second.",
  "short_name": "GC",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": false,
      "js": [
        "js/vendor.js",
        "js/helper.js",
        "js/content.js"
      ],
      "css": [
        "assets/content.css",
        "assets/jquery.toast.min.css"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "images/1627054117506-smallLogo.png",
    "48": "images/1627054117555-mediumLogo.png",
    "128": "images/1627054117615-largeLogo.png"
  },
  "action": {
    "default_title": "Groove Cloner"
  },
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*",
        "images/*",
        "js/*",
        "jquery.min.js",
        "jquery.toast.min.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline'",
    "content_scripts": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline'"
  }
}