Mouse Coordinates

Display mouse coordinates every second on the web page

Wat is Mouse Coordinates?

Mouse Coordinates is een Chrome-extensie ontwikkeld door cdsisthe1, en de belangrijkste functie is "Display mouse coordinates every second on the web page".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Mouse Coordinates

Download Mouse Coordinates-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        A Mouse Coordinates Chrome extension tracks and displays your mouse pointer position on your screen, useful for precise X and Y element positioning.                    

Basisinformatie over de Extensie

Naam Mouse Coordinates Mouse Coordinates
ID mfohnjojhopfcahiddmeljeholnciakl
Officiële URL https://chromewebstore.google.com/detail/mouse-coordinates/mfohnjojhopfcahiddmeljeholnciakl
Beschrijving Display mouse coordinates every second on the web page
Bestandsgrootte 31.31 KB
Aantal Installaties 2,035
Huidige Versie 2.1
Laatst Bijgewerkt 2023-11-06
Publicatiedatum 2023-04-26
Beoordeling 2.63/5 Totaal 16 Beoordelingen
Ontwikkelaar cdsisthe1
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Mouse Coordinates",
    "version": "2.1",
    "description": "Display mouse coordinates every second on the web page",
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ]
}