Ethereum Cursor

Ethereum Cursor

Choose your favorite Ethereum cursor to navigate the web

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Ethereum Cursor",
  "description": "Choose your favorite Ethereum cursor to navigate the web",
  "version": "1.0.0",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "eth_128.png",
    "48": "eth_128.png",
    "128": "eth_128.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "128": "eth_128.png"
    }
  },
  "permissions": [
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "eth_cursor.png",
        "eth_cursor_2x.png",
        "eth_diamond_cursor.png",
        "eth_diamond_cursor_2x.png",
        "eth_black_cursor.png",
        "eth_black_cursor_2x.png",
        "eth_blu_cursor.png",
        "eth_blu_cursor_2x.png",
        "eth_colors_cursor.png",
        "eth_colors_cursor_2x.png",
        "eth_white_cursor.png",
        "eth_white_cursor_2x.png",
        "eth_inverted_cursor.png",
        "eth_inverted_cursor_2x.png",
        "eth_gold_cursor.png",
        "eth_gold_cursor_2x.png",
        "eth_colorfull_cursor.png",
        "eth_colorfull_cursor_2x.png",
        "eth_neon_cursor.png",
        "eth_neon_cursor_2x.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}