Change Cursors for Chrome

Change Cursors for Chrome

Change Custom Cursors on Chrome Browser

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Change Cursors for Chrome",
  "description": "Change Custom Cursors on Chrome Browser",
  "version": "1.1",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "dialog/index.html",
    "default_title": "Change Cursors for Chrome"
  },
  "content_scripts": [
    {
      "css": [
        "content/style.css"
      ],
      "js": [
        "content/content.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "all_frames": true
    }
  ],
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "chromeos": "Alt+Shift+C",
        "linux": "Alt+Shift+C",
        "mac": "Alt+Shift+C",
        "windows": "Alt+Shift+C"
      }
    }
  },
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "*://*/*"
  ],
  "background": {
    "scripts": [
      "js/jquery-3.4.1.min.js",
      "js/background.js"
    ]
  },
  "manifest_version": 2,
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "homepage_url": "https://coolsymbol.com",
  "offline_enabled": true,
  "short_name": "CC",
  "update_url": "https://clients2.google.com/service/update2/crx",
  "web_accessible_resources": [
    "images/*",
    "content/*.*"
  ]
}