Mouse Coordinates

Display mouse coordinates on the web page.

Cos'è Mouse Coordinates?

Mouse Coordinates è un'estensione di Chrome sviluppata da https://betelgeuseas.github.io/extensions, e la sua funzione principale è "Display mouse coordinates on the web page.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Mouse Coordinates

Scarica i file di estensione Mouse Coordinates in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Mouse Coordinates Mouse Coordinates
ID khdgjhdgmblhlngkhmnmbkacgjcecnah
URL Ufficiale https://chromewebstore.google.com/detail/mouse-coordinates/khdgjhdgmblhlngkhmnmbkacgjcecnah
Descrizione Display mouse coordinates on the web page.
Dimensione del File 98.06 KB
Conteggio Installazioni 894
Versione Corrente 1.0.0
Ultimo Aggiornamento 2023-07-26
Data di Pubblicazione 2023-07-26
Valutazione 4.75/5 Totale 4 Valutazioni
Sviluppatore https://betelgeuseas.github.io/extensions
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://betelgeuseas.github.io/extensions/
URL della Pagina di Aiuto https://betelgeuseas.github.io/extensions/#contact
Lingue Supportate 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"
    ]
}