Mouse XY

Mouse XY

Shows a list of x/y co-ordinates you have clicked.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Mouse XY",
  "description": "Shows a list of x/y co-ordinates you have clicked.",
  "version": "2.3",
  "icons": {
    "64": "icon.png"
  },
  "background": {
    "scripts": [
      "js/change.js",
      "js/content_script.js"
    ],
    "persistent": false
  },
  "permissions": [
    "activeTab"
  ],
  "browser_action": {
    "default_title": "Shows the X and Y coordinates of the mouse click."
  },
  "manifest_version": 2
}