Mouse Coordinates
Display mouse coordinates on the web page.
Hvad er Mouse Coordinates?
Mouse Coordinates er en Chrome-udvidelse udviklet af https://betelgeuseas.github.io/extensions, og dens hovedfunktion er "Display mouse coordinates on the web page.".
Udvidelsesskærmbilleder
Download Mouse Coordinates-udvidelses-CRX-fil
Download Mouse Coordinates-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
A Mouse Coordinates Chrome extension tracks and displays your mouse pointer position on your screen, useful for precise X and Y element positioning.
Grundlæggende oplysninger om udvidelsen
Navn | Mouse Coordinates |
ID | khdgjhdgmblhlngkhmnmbkacgjcecnah |
Officiel URL | https://chromewebstore.google.com/detail/mouse-coordinates/khdgjhdgmblhlngkhmnmbkacgjcecnah |
Beskrivelse | Display mouse coordinates on the web page. |
Filstørrelse | 98.06 KB |
Antal Installationer | 894 |
Nuværende Version | 1.0.0 |
Senest Opdateret | 2023-07-26 |
Udgivelsesdato | 2023-07-26 |
Bedømmelse | 4.75/5 Samlet 4 Bedømmelser |
Udvikler | https://betelgeuseas.github.io/extensions |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://betelgeuseas.github.io/extensions/ |
Hjælpeside-URL | https://betelgeuseas.github.io/extensions/#contact |
Understøttede Sprog | 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" ] } |