Meow, The Cat Pet

Meow, The Cat Pet

Meow is a virtual Cat pet who walks on your screen while you're browsing the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "version": "1.13.0",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "notifications",
    "storage",
    "alarms"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_title": "Cat Pet",
    "default_popup": "/html/popup.html"
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "images/*.png",
        "js/*.png",
        "images/*.jpg",
        "images/*.svg",
        "js/*.json",
        "js/*.atlas",
        "sound/*.mp3"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_globs": [
        "*://*.meowthecatpet.com/game*",
        "*://*.meowplayground.com/game*",
        "*://localhost:5443/game*",
        "*://www.gominigames.com*",
        "*://www.askuseme.com*",
        "*://www.agomer.com*",
        "*://ultrasfan.club*",
        "*://rspo.com*"
      ],
      "css": [
        "/css/dist/catpet.css"
      ],
      "js": [
        "/js/dist/browserLoader.js",
        "/js/dist/runCat.js"
      ]
    },
    {
      "matches": [
        "https://beta.meowthecatpet.com/game*",
        "https://www.meowplayground.com/game*",
        "http://localhost:5443/game/*"
      ],
      "js": [
        "js/domain-sync.js"
      ]
    }
  ],
  "icons": {
    "16": "16.png",
    "48": "48.png",
    "128": "128.png"
  }
}