Mouse Coordinates
Display mouse coordinates on the web page.
What is Mouse Coordinates?
Mouse Coordinates is a Chrome extension developed by https://betelgeuseas.github.io/extensions, and its main feature is "Display mouse coordinates on the web page.".
Extension Screenshots
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 |
ID | khdgjhdgmblhlngkhmnmbkacgjcecnah |
Official URL | https://chromewebstore.google.com/detail/mouse-coordinates/khdgjhdgmblhlngkhmnmbkacgjcecnah |
Description | Display mouse coordinates on the web page. |
File Size | 98.06 KB |
Installation Count | 894 |
Current Version | 1.0.0 |
Last Updated | 2023-07-26 |
Publish Date | 2023-07-26 |
Rating | 4.75/5 Total 4 Ratings |
Developer | https://betelgeuseas.github.io/extensions |
[email protected] | |
Payment Type | free |
Extension Website | https://betelgeuseas.github.io/extensions/ |
Help Page URL | https://betelgeuseas.github.io/extensions/#contact |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Display mouse coordinates on the web page.", "version": "1.0.0", "manifest_version": 3, "name": "Mouse Coordinates", "homepage_url": "https:\/\/betelgeuseas.github.io\/extensions\/", "action": { "default_popup": "popup.html", "default_title": "Mouse Coordinates", "default_icon": "icon-32.png" }, "icons": { "16": "icon-16.png", "32": "icon-32.png", "64": "icon-64.png", "128": "icon-128.png" }, "background": { "service_worker": "background.bundle.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ], "permissions": [ "contextMenus", "storage" ] } |