Cursor Highlighter
Add a visual indicator to your mouse cursor for better visibility
Что такое Cursor Highlighter?
Cursor Highlighter - это расширение Chrome, разработанное Alexander Lyon, и его основная функция - "Add a visual indicator to your mouse cursor for better visibility".
Снимки экрана расширения
Скачать файл CRX расширения Cursor Highlighter
Скачайте файлы расширений Cursor Highlighter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Add a customizable visual indicator to your mouse cursor on any website. Whether to assist those who are visually impaired or for presentation/education purposes, this will make your cursor stand out!
Select one of the default colors, or use the built-in color picker to choose your own unique color to fit your personality! Основная информация о расширении
| Название | |
| ID | echjgnggfpiohepohkpfknhjbnccdjlo |
| Официальный URL | https://chromewebstore.google.com/detail/cursor-highlighter/echjgnggfpiohepohkpfknhjbnccdjlo |
| Описание | Add a visual indicator to your mouse cursor for better visibility |
| Размер файла | 60.86 KB |
| Количество установок | 11,158 |
| Текущая Версия | 2.1.0 |
| Последнее Обновление | 2022-08-08 |
| Дата публикации | 2020-09-20 |
| Рейтинг | 3.43/5 Всего 28 оценок |
| Разработчик | Alexander Lyon |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Cursor Highlighter",
"description": "Add a visual indicator to your mouse cursor for better visibility",
"version": "2.1.0",
"manifest_version": 2,
"options_page": "options\/options.html",
"permissions": [
"storage"
],
"browser_action": {
"default_popup": "options\/options.html",
"default_icon": "images\/cursor-highlighter-logo-sm.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"run_at": "document_start",
"all_frames": false,
"js": [
"dist\/main.bundle.js"
]
}
],
"icons": {
"16": "images\/cursor-highlighter-logo-sm.png",
"48": "images\/cursor-highlighter-logo-md.png",
"128": "images\/cursor-highlighter-logo-lg.png"
}
} | |