Custom Avatars for Gartic Phone

Custom Avatars for Gartic Phone

Replace your and your friend's avatars with custom avatars of your own!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Custom Avatars for Gartic Phone",
  "version": "1.0.2",
  "description": "Replace your and your friend's avatars with custom avatars of your own!",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "pages/avatars.html",
        "assets/*"
      ],
      "matches": [
        "https://garticphone.com/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "content_scripts": [
    {
      "css": [
        "avatars.css"
      ],
      "js": [
        "components/language.js",
        "pages/home.js",
        "pages/main.js"
      ],
      "matches": [
        "https://garticphone.com/*"
      ],
      "run_at": "document_end"
    }
  ]
}