My Custom Pointer for Chrome

My Custom Pointer for Chrome

With MyCustomPointer you can change all the cursors of google chrome as you prefer!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "My Custom Pointer for Chrome",
  "short_name": "MyCustomPointer",
  "default_locale": "en",
  "version": "1.4",
  "manifest_version": 2,
  "description": "__MSG_extDesc__",
  "content_security_policy": "script-src 'self' https://ajax.googleapis.com; object-src 'self';",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png",
    "512": "icon.png"
  },
  "permissions": [
    "storage",
    "http://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "js/jquery-1.10.2.js",
        "js/jquery.min.js",
        "main.js",
        "js/jimp.min.js"
      ],
      "css": [
        "style.css"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "js/jquery-1.10.2.js",
      "js/jquery.min.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "fonts/Sickness.ttf"
  ]
}