Mouse Pet

Mouse Pet

A fun extension that adds a small pet snake following your cursor

Merlin
Additional files are visible only to premium users

manifest.json


{
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "53.0"
    }
  },
  "manifest_version": 2,
  "version": "1.2.1",
  "name": "Mouse Pet",
  "description": "A fun extension that adds a creature following your cursor",
  "author": "SrKomodo",
  "homepage_url": "https://github.com/SrKomodo/mouse-pet",
  "icons": {
    "16": "icon.svg",
    "32": "icon.svg",
    "48": "icon.svg",
    "96": "icon.svg"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "inject/inject.js"
      ]
    }
  ],
  "browser_action": {
    "browser_style": true,
    "default_icon": "icon.svg",
    "default_popup": "popup/popup.html"
  },
  "options_ui": {
    "page": "popup/popup.html"
  },
  "permissions": [
    "storage"
  ]
}