Mouse Coordinates
Display mouse coordinates on the web page.
Vad är Mouse Coordinates?
Mouse Coordinates är en Chrome-tillägg utvecklad av https://betelgeuseas.github.io/extensions, och dess huvudfunktion är "Display mouse coordinates on the web page.".
Tilläggsskärmbilder
Ladda ner Mouse Coordinates-förlängningens CRX-fil
Ladda ner Mouse Coordinates-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
A Mouse Coordinates Chrome extension tracks and displays your mouse pointer position on your screen, useful for precise X and Y element positioning.
Grundläggande Information om Tillägg
Namn | Mouse Coordinates |
ID | khdgjhdgmblhlngkhmnmbkacgjcecnah |
Officiell webbadress | https://chromewebstore.google.com/detail/mouse-coordinates/khdgjhdgmblhlngkhmnmbkacgjcecnah |
Beskrivning | Display mouse coordinates on the web page. |
Filstorlek | 98.06 KB |
Antal Installationer | 894 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2023-07-26 |
Publiceringsdatum | 2023-07-26 |
Betyg | 4.75/5 Totalt 4 Betyg |
Utvecklare | https://betelgeuseas.github.io/extensions |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://betelgeuseas.github.io/extensions/ |
Hjälpsida URL | https://betelgeuseas.github.io/extensions/#contact |
Stödda Språk | 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" ] } |