Synthesys X

Synthesys X

Start Turning Your Online Inspiration Into Your Own Unique Creations.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Synthesys X",
  "description": "Start Turning Your Online Inspiration Into Your Own Unique Creations.",
  "version": "1.0.7.4",
  "icons": {
    "16": "icons/16x16.png",
    "32": "icons/32x32.png",
    "48": "icons/48x48.png",
    "128": "icons/128x128.png"
  },
  "action": {},
  "background": {
    "service_worker": "background/worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/popup/js/index.js"
      ],
      "css": [
        "content/popup/css/index.css"
      ]
    }
  ],
  "permissions": [
    "contextMenus",
    "scripting",
    "webNavigation",
    "storage",
    "system.cpu",
    "system.memory",
    "downloads",
    "identity"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content/popup/html/index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "fonts/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://app.synthesys.io/*"
    ]
  }
}