Cute Avatar

Cute Avatar

Welcome to our avatar maker! This free online tool can help you create a cartoon avatar with an original and fun design.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "version": "1.0.1",
  "default_locale": "en",
  "manifest_version": 3,
  "icons": {
    "32": "assets/static/32.png",
    "64": "assets/static/64.png",
    "128": "assets/static/128.png"
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_title": "__MSG_title__"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.cute-cursors.com/*",
        "http://localhost:4200/*"
      ],
      "js": [
        "site-content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "static/*",
        "assets/*.svg",
        "assets/*.png",
        "assets/*.css",
        "assets/*.otf"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}