Mouse Marker

Mouse Marker

Show where your mouse is and where it's clicked.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "version": "0.0.1",
  "default_locale": "en",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "author": "Ken Frederick",
  "background": {
    "scripts": [
      "background.min.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "index.min.js"
      ],
      "css": [
        "index.min.css"
      ]
    }
  ],
  "offline_enabled": true,
  "permissions": [
    "activeTab",
    "contextMenus"
  ]
}