Figma Cursor Toggle
Toggle between touch and default cursor in any Figma prototype
Vad är Figma Cursor Toggle?
Figma Cursor Toggle är en Chrome-tillägg utvecklad av marvinkennis, och dess huvudfunktion är "Toggle between touch and default cursor in any Figma prototype".
Tilläggsskärmbilder
Ladda ner Figma Cursor Toggle-förlängningens CRX-fil
Ladda ner Figma Cursor Toggle-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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! Grundläggande Information om Tillägg
| Namn | |
| ID | lcncbmbpnkcbjmmofcjdiclcndndjlei |
| Officiell webbadress | https://chromewebstore.google.com/detail/figma-cursor-toggle/lcncbmbpnkcbjmmofcjdiclcndndjlei |
| Beskrivning | Toggle between touch and default cursor in any Figma prototype |
| Filstorlek | 11.23 KB |
| Antal Installationer | 168 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2023-04-21 |
| Publiceringsdatum | 2023-04-20 |
| Utvecklare | marvinkennis |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
}
]
} | |