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
官方網址 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"
    ]
}