Best Cursors - Bloom of Custom Cursor

Best Cursors - Bloom of Custom Cursor

Funny, cute and original custom cursor collections with popular topics. Use Best Cursors to change the default pointer with custom

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_name__",
  "description": "__MSG_desc__",
  "default_locale": "en",
  "version": "1.0.4",
  "manifest_version": 3,
  "icons": {
    "16": "./icons/favicon.png",
    "32": "./icons/bc-logo192.png",
    "48": "./icons/bc-logo192.png",
    "128": "./icons/bc-logo512.png"
  },
  "content_scripts": [
    {
      "js": [
        "contentScript.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "action": {
    "default_title": "__MSG_title__",
    "default_popup": "index.html",
    "default_icon": {
      "16": "./icons/favicon.png",
      "32": "./icons/bc-logo192.png",
      "48": "./icons/bc-logo192.png",
      "128": "./icons/bc-logo512.png"
    }
  },
  "externally_connectable": {
    "matches": [
      "http://*/*",
      "https://*/*"
    ]
  },
  "options_page": "./options.html",
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "permissions": [
    "alarms",
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "./options.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "bc-logo192.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "icons/bc-logo192.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}