Pets Chrome

Pets Chrome

🐾 Pets for Chrome is an application that adds cute and cuddly pets right into your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.1.1",
  "name": "Pets Chrome",
  "description": "🐾 Pets for Chrome is an application that adds cute and cuddly pets right into your browser.",
  "icons": {
    "512": "logo.png"
  },
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "menu.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "content.css"
      ]
    }
  ]
}