Laser Cat

Laser Cat

Shoot laser at things you want to remove from the internet

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": "2.3",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "action": {
    "default_icon": {
      "16": "icon16.png",
      "32": "icon32.png",
      "64": "icon64.png",
      "128": "icon128.png"
    },
    "default_title": "__MSG_appName__",
    "default_popup": "/popup/popup.html"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "author": "Andreas Mehlsen",
  "homepage_url": "https://lasercat.app",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtX7goKPH12yUvQCwgtgceAurUtO8CetOkuPXkCIRvgMOIkbtwQ+zRgPszX0wN9NZIRm0rsCgZTqoAInb3T9iP8+/jekEMgC3ssqHQK02IiK9q8eZxkFp6UcaPyzECcpc1XUNNXxGTkM2eqVF5n0rPaq74Azboyvh5ZJwWm9ewC0LvHrS22LZ9z9RnHmHvhJFg8yvvMbhuyM6/tHi0VRCKR8xfP8CSnFMyupmZQjWNBQwUjJofWoqLFI0qvGpfUzZSq3o8nVtElUqOVUcJY/qpXnDsnJvHvUgIKoAJApHEhJP4KkxnJQhVTlMXsrYPqnvKAfZLbdUqF6FjTzHZp0DwQIDAQAB",
  "web_accessible_resources": [
    {
      "resources": [
        "sounds/*",
        "js/*",
        "content-script.js",
        "config.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "background": {
    "service_worker": "background-script.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}