Mouse Coordinates

Display mouse coordinates on the web page.

Что такое Mouse Coordinates?

Mouse Coordinates - это расширение Chrome, разработанное https://betelgeuseas.github.io/extensions, и его основная функция - "Display mouse coordinates on the web page.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Mouse Coordinates

Скачайте файлы расширений Mouse Coordinates в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Mouse Coordinates Mouse Coordinates
ID khdgjhdgmblhlngkhmnmbkacgjcecnah
Официальный URL https://chromewebstore.google.com/detail/mouse-coordinates/khdgjhdgmblhlngkhmnmbkacgjcecnah
Описание Display mouse coordinates on the web page.
Размер файла 98.06 KB
Количество установок 894
Текущая Версия 1.0.0
Последнее Обновление 2023-07-26
Дата публикации 2023-07-26
Рейтинг 4.75/5 Всего 4 оценок
Разработчик https://betelgeuseas.github.io/extensions
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://betelgeuseas.github.io/extensions/
URL страницы помощи https://betelgeuseas.github.io/extensions/#contact
Поддерживаемые языки 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"
    ]
}