Anime Cursors

Anime Cursors

Replaces the standard mouse cursor.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Anime Cursors",
  "description": "Replaces the standard mouse cursor.",
  "version": "1.2.2",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "Images/icon.png"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "js": [
        "js/content.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "storage",
    "<all_urls>",
    "*://*/*",
    "webNavigation",
    "tabs",
    "activeTab"
  ]
}