Foot Cursor

Foot Cursor

Your cursor is now a foot

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Foot Cursor",
  "description": "Your cursor is now a foot",
  "version": "3.0",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "css": [
        "toeclick.css"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "icons": {
    "64": "icon64.png",
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    "click.png",
    "click.2x.png",
    "hover.png",
    "hover.2x.png"
  ]
}