Custom Cursor for Chrome™

Custom Cursor for Chrome™

Custom cursors for Chrome™. Use a large collection of free cursors !

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "dialog/index.html",
    "default_title": "Change your Cursor here"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "content/style.css"
      ],
      "js": [
        "content/content.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "description": "Custom cursors for Chrome™. Use a large collection of free cursors !",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "manifest_version": 2,
  "name": "Custom Cursor for Chrome™",
  "options_page": "options.html",
  "offline_enabled": true,
  "permissions": [
    "storage",
    "*://*/*",
    "tabs"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js",
      "js/jquery-3.4.1.min.js"
    ]
  },
  "version": "1.3",
  "web_accessible_resources": [
    "images/*",
    "content/*.*"
  ]
}