Figma Cursor Toggle
Toggle between touch and default cursor in any Figma prototype
Что такое Figma Cursor Toggle?
Figma Cursor Toggle - это расширение Chrome, разработанное marvinkennis, и его основная функция - "Toggle between touch and default cursor in any Figma prototype".
Снимки экрана расширения
Скачать файл CRX расширения Figma Cursor Toggle
Скачайте файлы расширений Figma Cursor Toggle в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Toggle between touch and default cursor in any Figma prototype. This is especially useful when you want to record mobile prototypes in non-standard frame sizes. No more desktop cursors on mobile UI!
Основная информация о расширении
Название | Figma Cursor Toggle |
ID | lcncbmbpnkcbjmmofcjdiclcndndjlei |
Официальный URL | https://chromewebstore.google.com/detail/figma-cursor-toggle/lcncbmbpnkcbjmmofcjdiclcndndjlei |
Описание | Toggle between touch and default cursor in any Figma prototype |
Размер файла | 11.23 KB |
Количество установок | 168 |
Текущая Версия | 1.0 |
Последнее Обновление | 2023-04-21 |
Дата публикации | 2023-04-20 |
Разработчик | marvinkennis |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Figma Cursor Toggle", "version": "1.0", "description": "Toggle between touch and default cursor in any Figma prototype", "manifest_version": 3, "permissions": [ "tabs", "activeTab" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/proto\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ] } |