Figma Cursor Toggle
Toggle between touch and default cursor in any Figma prototype
Co to jest Figma Cursor Toggle?
Figma Cursor Toggle to rozszerzenie Chrome opracowane przez marvinkennis, a jego główną funkcją jest „Toggle between touch and default cursor in any Figma prototype”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Figma Cursor Toggle
Pobierz pliki rozszerzeń Figma Cursor Toggle w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | Figma Cursor Toggle |
ID | lcncbmbpnkcbjmmofcjdiclcndndjlei |
Oficjalny URL | https://chromewebstore.google.com/detail/figma-cursor-toggle/lcncbmbpnkcbjmmofcjdiclcndndjlei |
Opis | Toggle between touch and default cursor in any Figma prototype |
Rozmiar pliku | 11.23 KB |
Liczba instalacji | 168 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2023-04-21 |
Data Publikacji | 2023-04-20 |
Deweloper | marvinkennis |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } ] } |