Examine source code of Canva AutoMaker

Inspect and view changes in Canva AutoMaker source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "name": "Canva AutoMaker",
  "version": "1.0",
  "description": "Automate Canva designs with Canva Automaker edge extension ",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "contentscript.css"
      ],
      "js": [
        "dom-to-image.js",
        "html2canvas.js",
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "Images/icon16.png",
    "32": "Images/icon32.png",
    "64": "Images/icon64.png",
    "128": "Images/icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "downloads",
    "notifications"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "Images/logoicon.png",
        "Images/star.png",
        "Images/uploadImage.png",
        "Images/closeIcn.png",
        "Images/float-icon.png",
        "sampleCSV.csv"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}