Mouse Pointer Highliter

Mouse Pointer Highliter that shows only the portion of the mouse pointer, Developed by Debug Media

Что такое Mouse Pointer Highliter?

Mouse Pointer Highliter - это расширение Chrome, разработанное Debug Media, и его основная функция - "Mouse Pointer Highliter that shows only the portion of the mouse pointer, Developed by Debug Media".

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

screenshot

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

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

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

                        This will hide all the elements on the screen except the portion of your mouse pointer, This is going to be very useful when you are taking online classes if you want them to focus on the section you are reading / explaining then you just have to point to that section and only that section will be visible                    

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

Название Mouse Pointer Highliter Mouse Pointer Highliter
ID fpnbcnljcbokdgeiihchnhobbokloaon
Официальный URL https://chromewebstore.google.com/detail/mouse-pointer-highliter/fpnbcnljcbokdgeiihchnhobbokloaon
Описание Mouse Pointer Highliter that shows only the portion of the mouse pointer, Developed by Debug Media
Размер файла 4.68 KB
Количество установок 21
Текущая Версия 1.0.0
Последнее Обновление 2020-08-14
Дата публикации 2020-08-13
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Debug Media
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.youtube.com/debugmedia
URL страницы помощи https://www.youtube.com/debugmedia
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Mouse Pointer Highliter",
    "version": "1.0.0",
    "description": "Mouse Pointer Highliter that shows only the portion of the mouse pointer, Developed by Debug Media",
    "manifest_version": 2,
    "icons": {
        "128": "icon.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}