Animated Cat for Chrome

Animated Cat for Chrome

Animated cute cat extension and funny meows on every click. Customize and activate meows on typing or clicking!

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_name__",
  "description": "__MSG_description__",
  "short_name": "❤ Cat",
  "author": "Dexter's lab",
  "version": "1.0.6",
  "default_locale": "en",
  "chrome_url_overrides": {
    "newtab": "tab.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.css",
        "*.js",
        "assets/sonido/*.*",
        "sounds/*.*",
        "assets/*.*",
        "*://*/*"
      ],
      "matches": [
        "<all_urls>",
        "*://*/*"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": "icon48.png",
    "default_title": "__MSG_name__",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "worker.js"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "activeTab",
    "background",
    "scripting",
    "storage",
    "history"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}