Kite Cursor

Kite Cursor

A kite that follows your cursor!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Kite Cursor",
  "description": "A kite that follows your cursor!",
  "version": "0.0.2",
  "homepage_url": "https://github.com/venashial/kite-cursor#readme",
  "icons": {
    "48": "icons/48.png"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "loader.js"
      ]
    }
  ],
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "browser_style": true,
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png"
    },
    "default_title": "Kite Cursor"
  }
}