Mouse Coordinates

Display mouse coordinates on the web page.

Co je Mouse Coordinates?

Mouse Coordinates je rozšíření Chrome vyvinuté https://betelgeuseas.github.io/extensions, a jeho hlavní funkcí je „Display mouse coordinates on the web page.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Mouse Coordinates

Stáhněte si soubory rozšíření Mouse Coordinates ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Mouse Coordinates Mouse Coordinates
ID khdgjhdgmblhlngkhmnmbkacgjcecnah
Oficiální URL https://chromewebstore.google.com/detail/mouse-coordinates/khdgjhdgmblhlngkhmnmbkacgjcecnah
Popis Display mouse coordinates on the web page.
Velikost souboru 98.06 KB
Počet instalací 894
Aktuální Verze 1.0.0
Poslední Aktualizace 2023-07-26
Datum Vydání 2023-07-26
Hodnocení 4.75/5 Celkem 4 Hodnocení
Vývojář https://betelgeuseas.github.io/extensions
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://betelgeuseas.github.io/extensions/
URL Stránky Nápovědy https://betelgeuseas.github.io/extensions/#contact
Podporované Jazyky 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"
    ]
}