Mouse Coordinates

Display mouse coordinates every second on the web page

What is Mouse Coordinates?

Mouse Coordinates is a Chrome extension developed by cdsisthe1, and its main feature is "Display mouse coordinates every second on the web page".

Extension Screenshots

screenshot

Download Mouse Coordinates Extension CRX File

Download Mouse Coordinates extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        A Mouse Coordinates Chrome extension tracks and displays your mouse pointer position on your screen, useful for precise X and Y element positioning.                    

Extension Basic Information

Name Mouse Coordinates Mouse Coordinates
ID mfohnjojhopfcahiddmeljeholnciakl
Official URL https://chromewebstore.google.com/detail/mouse-coordinates/mfohnjojhopfcahiddmeljeholnciakl
Description Display mouse coordinates every second on the web page
File Size 31.31 KB
Installation Count 2,035
Current Version 2.1
Last Updated 2023-11-06
Publish Date 2023-04-26
Rating 2.63/5 Total 16 Ratings
Developer cdsisthe1
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Mouse Coordinates",
    "version": "2.1",
    "description": "Display mouse coordinates every second on the web page",
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ]
}