Mouse Coordinates
Display mouse coordinates on the web page.
Mouse Coordinatesคืออะไร?
Mouse Coordinates เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://betelgeuseas.github.io/extensions และคุณลักษณะหลักของมันคือ "Display mouse coordinates on the web page."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mouse Coordinates
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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" ] } |