Mouse Coordinates
Display mouse coordinates on the web page.
Co to jest Mouse Coordinates?
Mouse Coordinates to rozszerzenie Chrome opracowane przez https://betelgeuseas.github.io/extensions, a jego główną funkcją jest „Display mouse coordinates on the web page.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Mouse Coordinates
Pobierz pliki rozszerzeń Mouse Coordinates w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
A Mouse Coordinates Chrome extension tracks and displays your mouse pointer position on your screen, useful for precise X and Y element positioning.
Podstawowe informacje o rozszerzeniu
Nazwa | Mouse Coordinates |
ID | khdgjhdgmblhlngkhmnmbkacgjcecnah |
Oficjalny URL | https://chromewebstore.google.com/detail/mouse-coordinates/khdgjhdgmblhlngkhmnmbkacgjcecnah |
Opis | Display mouse coordinates on the web page. |
Rozmiar pliku | 98.06 KB |
Liczba instalacji | 894 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2023-07-26 |
Data Publikacji | 2023-07-26 |
Ocena | 4.75/5 Łącznie 4 Oceny |
Deweloper | https://betelgeuseas.github.io/extensions |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://betelgeuseas.github.io/extensions/ |
Adres URL Strony Pomocy | https://betelgeuseas.github.io/extensions/#contact |
Obsługiwane Języki | 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" ] } |