Mouse Coordinates
Display mouse coordinates on the web page.
什麼是Mouse Coordinates?
Mouse Coordinates是由https://betelgeuseas.github.io/extensions開發的Chrome擴展程式,該擴展的主要功能是“Display mouse coordinates on the web page.”。
擴展截圖
下載Mouse Coordinates擴展crx文件
下載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 |
官方網址 | 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" ] } |