Mouse Coordinates
Display mouse coordinates on the web page.
Wat is Mouse Coordinates?
Mouse Coordinates is een Chrome-extensie ontwikkeld door https://betelgeuseas.github.io/extensions, en de belangrijkste functie is "Display mouse coordinates on the web page.".
Extensie Screenshots
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 | |
| ID | khdgjhdgmblhlngkhmnmbkacgjcecnah |
| Officiële URL | https://chromewebstore.google.com/detail/mouse-coordinates/khdgjhdgmblhlngkhmnmbkacgjcecnah |
| Beschrijving | Display mouse coordinates on the web page. |
| Bestandsgrootte | 98.06 KB |
| Aantal Installaties | 894 |
| Huidige Versie | 1.0.0 |
| Laatst Bijgewerkt | 2023-07-26 |
| Publicatiedatum | 2023-07-26 |
| Beoordeling | 4.75/5 Totaal 4 Beoordelingen |
| Ontwikkelaar | https://betelgeuseas.github.io/extensions |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://betelgeuseas.github.io/extensions/ |
| Help Pagina-URL | https://betelgeuseas.github.io/extensions/#contact |
| Ondersteunde Talen | 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"
]
} | |