Custom Cursors

Custom Cursors

Replace the old boring cursor with a new one or load your own.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "Replace the old boring cursor with a new one or load your own.",
  "version": "1.5",
  "default_locale": "en",
  "background": {
    "scripts": [
      "ultima.js",
      "bkg.js",
      "for_back.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_title": "Cute Pointers",
    "default_icon": {
      "128": "faragora.png"
    },
    "default_popup": "someAnother.html"
  },
  "icons": {
    "128": "faragora.png"
  },
  "content_scripts": [
    {
      "js": [
        "some-front-fourth.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "storage",
    "unlimitedStorage",
    "tabs",
    "<all_urls>"
  ],
  "options_page": "someFront.html",
  "web_accessible_resources": [
    "scripts/*.js",
    "data/*.js",
    "*.svg"
  ]
}