Animated Cursors Forever!

Animated Cursors Forever!

Chrome extension that brings animated cursors back to the web! Supports .ani and .cur files.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Animated Cursors Forever!",
  "version": "1.4",
  "description": "Chrome extension that brings animated cursors back to the web! Supports .ani and .cur files.",
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "aniImport.js",
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "128": "icon128.png",
    "256": "icon256.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "animcursors.js",
        "injectCursor.js"
      ]
    }
  ],
  "manifest_version": 2
}