Mouse Coordinates

Display mouse coordinates every second on the web page

什么是Mouse Coordinates?

Mouse Coordinates是由cdsisthe1开发的Chrome扩展程序,该扩展的主要功能是“Display mouse coordinates every second on the web page”。

扩展截图

screenshot

下载Mouse Coordinates扩展crx文件

下载Mouse Coordinates扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

扩展基本信息

名称 Mouse Coordinates Mouse Coordinates
ID mfohnjojhopfcahiddmeljeholnciakl
官方URL https://chromewebstore.google.com/detail/mouse-coordinates/mfohnjojhopfcahiddmeljeholnciakl
简介 Display mouse coordinates every second on the web page
文件大小 31.31 KB
安装次数 2,035
当前版本 2.1
更新时间 2023-11-06
上架时间 2023-04-26
评分 2.63/5 共16次评分
开发者 cdsisthe1
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    ]
}