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
Eメール [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"
    ]
}