Canva Automation | Make Designs | CanvasMate

Canva Automation | Make Designs | CanvasMate

Automate canva designs in bulk, create and download multiple design variations automatically

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Canva Automation | Make Designs | CanvasMate",
  "description": "Automate canva designs in bulk, create and download multiple design variations automatically",
  "version": "1.0.1",
  "short_name": "Canva Automation | Make Designs | CanvasMate",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "icons": {
    "16": "./images/16x16.png",
    "128": "./images/128x128.png"
  },
  "action": {
    "default_icon": {
      "16": "./images/16x16.png",
      "128": "./images/128x128.png"
    },
    "default_popup": "popup.html",
    "default_title": "Canva Automation | Make Designs | CanvasMate"
  },
  "permissions": [
    "storage",
    "downloads"
  ],
  "content_scripts": [
    {
      "js": [
        "canva.bundle.js"
      ],
      "matches": [
        "*://*.canva.com/*"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "canva.bundle.js",
        "css/*",
        "images/*",
        "js/*"
      ],
      "matches": [
        "*://*.canva.com/*"
      ]
    }
  ]
}