Happy dog - virtual pet for you and friends

Happy dog - virtual pet for you and friends

Take care of a virtual pet together with your friends or as an office pet with your team

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Happy dog - virtual pet for you and friends",
  "description": "Take care of a virtual pet together with your friends or as an office pet with your team",
  "version": "2.21.0",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "main.css"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "action": {
    "default_icon": "icons/logo.png",
    "default_popup": "popup/index.html",
    "default_title": "office pet"
  },
  "permissions": [
    "tabs",
    "storage",
    "identity"
  ],
  "icons": {
    "16": "icons/logo.png",
    "48": "icons/logo.png",
    "128": "icons/logo.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "Open_Sans/*",
        "images/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "oauth2": {
    "client_id": "551090273917-9birclmi0h67hcgbqhfo7dkla2j15rcs.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email"
    ]
  },
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAo1a0qysXhQq/sQt+bEOqjifBTb5Qw6wtZ3GrWJDBcR29MQrtNyqpGY0WVCxOqVO7K4pubFozzgUTMq4epXuenvWfbw4P5/1IWHuENq5sjAABs9ODQcPkbdHu2B0DTGwmporajJzpq92qbo9nAwYXYdIXy23bKOP9lLTKQkfN+QOj8uNfAn/xLFYvZos/4qjYuG+J5AeOZuGAnhl8+NG01HWQvRmvi034hN1GhMp4H5RhKHQHggvFAXJwYMpV5CtZkie+VQejHPLAFuX25u4Dd93dS/xUGsTFfDFHlA/gCtrm7sb7HZz9ola5IM3ii6ZjR6ZRVNKk07oikQfzAu6X+QIDAQAB"
}