LASER CAT

LASER CAT

IT'S A LASER CAT!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "LASER CAT",
  "short_name": "LASER CAT",
  "description": "IT'S A LASER CAT!",
  "version": "22.18.1",
  "background": {
    "scripts": [
      "js/launcher.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/icon-16.png",
      "64": "icons/icon-64.png",
      "96": "icons/icon-96.png",
      "128": "icons/icon-128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/lasercat.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/icon-16.png",
    "64": "icons/icon-64.png",
    "96": "icons/icon-96.png",
    "128": "icons/icon-128.png"
  },
  "web_accessible_resources": [
    "images/cat-body.png",
    "images/cat-head.png",
    "sounds/laser-loop.mp3",
    "sounds/laser-start.mp3",
    "sounds/meow.mp3"
  ],
  "permissions": [
    "activeTab",
    "*://*/*"
  ]
}