Cat Tab Cursor

Cat Tab Cursor

Get custom cursor for Chrome. Enjoy a special collection of cursors for cat lovers with lots of freebies.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.2",
  "action": {
    "default_popup": "popup.html",
    "default_title": "Cat Tab cursor"
  },
  "icons": {
    "128": "img/128.png"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "app/common.js",
        "cur/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "app/common.js",
        "app/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "service_worker": "app/background.js",
    "type": "module"
  },
  "permissions": [
    "storage",
    "webNavigation",
    "bookmarks",
    "activeTab"
  ],
  "chrome_url_overrides": {
    "newtab": "search.html"
  }
}