Mouse Coordinates

Display mouse coordinates every second on the web page

Mouse Coordinatesคืออะไร?

Mouse Coordinates เป็นส่วนขยายของ Chrome ที่พัฒนาโดย cdsisthe1 และคุณลักษณะหลักของมันคือ "Display mouse coordinates every second on the web page"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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 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
อีเมล [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"
    ]
}