Mouse Coordinates
Display mouse coordinates on the web page.
Mouse Coordinates là gì?
Mouse Coordinates là một tiện ích mở rộng Chrome được phát triển bởi https://betelgeuseas.github.io/extensions, và tính năng chính của nó là "Display mouse coordinates on the web page.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Mouse Coordinates
Tải xuống các tệp mở rộng Mouse Coordinates dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
A Mouse Coordinates Chrome extension tracks and displays your mouse pointer position on your screen, useful for precise X and Y element positioning.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Mouse Coordinates |
ID | khdgjhdgmblhlngkhmnmbkacgjcecnah |
URL Chính Thức | https://chromewebstore.google.com/detail/mouse-coordinates/khdgjhdgmblhlngkhmnmbkacgjcecnah |
Mô tả | Display mouse coordinates on the web page. |
Kích Thước Tệp | 98.06 KB |
Số Lần Cài Đặt | 894 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2023-07-26 |
Ngày Phát Hành | 2023-07-26 |
Đánh Giá | 4.75/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | https://betelgeuseas.github.io/extensions |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://betelgeuseas.github.io/extensions/ |
URL Trang Trợ Giúp | https://betelgeuseas.github.io/extensions/#contact |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |