Mouse Pointer Highliter

Mouse Pointer Highliter

Mouse Pointer Highliter that shows only the portion of the mouse pointer, Developed by Debug Media

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mouse Pointer Highliter",
  "version": "1.0.0",
  "description": "Mouse Pointer Highliter that shows only the portion of the mouse pointer, Developed by Debug Media",
  "manifest_version": 2,
  "icons": {
    "128": "icon.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ]
}