coordinates

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

什麼是coordinates?

coordinates是由Evaw開發的Chrome擴展程式,該擴展的主要功能是“Adds a mouse position tooltip, with its x and y coordinates. Also measures areas of regions.”。

擴展截圖

下載coordinates擴展crx文件

下載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
官方網址 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"
    ]
}