coordinates

coordinates

Adds a mouse position tooltip, with its x and y coordinates. Also measures areas of regions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "coordinates",
  "version": "1.4.1",
  "icons": {
    "48": "img/icons/icon48.png",
    "128": "img/icons/icon128.png",
    "300": "img/icons/icon300.png"
  },
  "description": "Adds a mouse position tooltip, with its x and y coordinates. Also measures areas of regions.",
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file:///*/*"
      ],
      "js": [
        "js/content-script.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "scripts": [
      "js/popup.js"
    ]
  },
  "options_ui": {
    "page": "html/options.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_icon": "img/icons/iconoff128.png",
    "__default_popup": "html/popup.html"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "storage"
  ]
}