coordinates

Adds a mouse position tooltip, with its x and y coordinates. Also measures areas of regions.

coordinatesคืออะไร?

coordinates เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Evaw และคุณลักษณะหลักของมันคือ "Adds a mouse position tooltip, with its x and y coordinates. Also measures areas of regions."

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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย coordinates

ดาวน์โหลดไฟล์ส่วนขยาย coordinates ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Note local files: In the extension details you have to explicitly tell chrome that you want to "Allow access to file URLs".
see https://www.youtube.com/watch?v=D8pf38ifgUM for the steps

This extension adds a mouse position tooltip, with its x, and y coordinates. 
It also allows you to measure area dimensions by dragging the cursor, like a pixel ruler.
 
As an option, you can set the triggering action for measuring areas to be the keyboard shift key (hold down *shift*, move mouse and hold up *shift*). This avoids the browser selecting things when you try to measure. It also prevents other default mouse behaviours, like scrolling when you are dragging your cursor.

Noted issues:
It should work after install, but the web is complicated. try refreshing the page if things do not work right away.

Iframes, usually ads, will look like another page and the parent page will lose track of coordinates.

Please send me feedback, I would appreciate it.

----------
version 1.2.4

Add a long format option to display info in multiple lines.

-----------
version 1.4
extend to file urls, needs explicit permission from the user                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ coordinates coordinates
ID bpflbjmbfccblbhlcmlgkajdpoiepmkd
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/coordinates/bpflbjmbfccblbhlcmlgkajdpoiepmkd
คำอธิบาย Adds a mouse position tooltip, with its x and y coordinates. Also measures areas of regions.
ขนาดไฟล์ 167 KB
จำนวนการติดตั้ง 33,713
เวอร์ชันปัจจุบัน 1.4.1
อัปเดตครั้งล่าสุด 2019-10-17
วันที่เผยแพร่ 2019-10-17
คะแนน 3.81/5 รวมทั้งหมด 47 คะแนน
ผู้พัฒนา Evaw
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Evaw/coordinates
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "coordinates",
    "version": "1.4.1",
    "icons": {
        "48": "img\/icons\/icon48.png",
        "128": "img\/icons\/icon128.png",
        "300": "img\/icons\/icon300.png"
    },
    "description": "Adds a mouse position tooltip, with its x and y coordinates. Also measures areas of regions.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*\/*"
            ],
            "js": [
                "js\/content-script.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "js\/popup.js"
        ]
    },
    "options_ui": {
        "page": "html\/options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": "img\/icons\/iconoff128.png",
        "__default_popup": "html\/popup.html"
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ]
}