Mouse Coordinates

Display mouse coordinates on the web page.

Apa itu Mouse Coordinates?

Mouse Coordinates adalah ekstensi Chrome yang dikembangkan oleh https://betelgeuseas.github.io/extensions, dan fitur utamanya adalah "Display mouse coordinates on the web page.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Mouse Coordinates

Unduh file ekstensi Mouse Coordinates dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Mouse Coordinates Mouse Coordinates
ID khdgjhdgmblhlngkhmnmbkacgjcecnah
URL Resmi https://chromewebstore.google.com/detail/mouse-coordinates/khdgjhdgmblhlngkhmnmbkacgjcecnah
Deskripsi Display mouse coordinates on the web page.
Ukuran File 98.06 KB
Jumlah Instalasi 894
Versi Saat Ini 1.0.0
Terakhir Diperbarui 2023-07-26
Tanggal Publikasi 2023-07-26
Penilaian 4.75/5 Total 4 Penilaian
Pengembang https://betelgeuseas.github.io/extensions
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://betelgeuseas.github.io/extensions/
URL Halaman Bantuan https://betelgeuseas.github.io/extensions/#contact
Bahasa yang Didukung 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"
    ]
}