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.」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" ] } |