Web Cursors

Web Cursors

Don't feel alone on the internet anymore and add realtime features to any websites and pages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Web Cursors",
  "description": "Don't feel alone on the internet anymore and add realtime features to any websites and pages",
  "version": "1.8.0",
  "icons": {
    "24": "icons/icon_24.png",
    "48": "icons/icon_48.png",
    "96": "icons/icon_96.png",
    "192": "icons/icon_192.png"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "background": {
    "service_worker": "scripts/worker.js"
  },
  "action": {
    "default_title": "Options",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "scripts/content.js"
      ],
      "css": [
        "styles/style.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/videos/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}