Mouse Coordinates

Display mouse coordinates on the web page.

什么是Mouse Coordinates?

Mouse Coordinates是由https://betelgeuseas.github.io/extensions开发的Chrome扩展程序,该扩展的主要功能是“Display mouse coordinates 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 khdgjhdgmblhlngkhmnmbkacgjcecnah
官方URL https://chromewebstore.google.com/detail/mouse-coordinates/khdgjhdgmblhlngkhmnmbkacgjcecnah
简介 Display mouse coordinates on the web page.
文件大小 98.06 KB
安装次数 894
当前版本 1.0.0
更新时间 2023-07-26
上架时间 2023-07-26
评分 4.75/5 共4次评分
开发者 https://betelgeuseas.github.io/extensions
电子邮箱 [email protected]
付费类型 free
扩展官网 https://betelgeuseas.github.io/extensions/
帮助页面URL https://betelgeuseas.github.io/extensions/#contact
支持的语言 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"
    ]
}