Figma Cursor Toggle

Toggle between touch and default cursor in any Figma prototype

Cos'è Figma Cursor Toggle?

Figma Cursor Toggle è un'estensione di Chrome sviluppata da marvinkennis, e la sua funzione principale è "Toggle between touch and default cursor in any Figma prototype".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Figma Cursor Toggle

Scarica i file di estensione Figma Cursor Toggle in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Figma Cursor Toggle Figma Cursor Toggle
ID lcncbmbpnkcbjmmofcjdiclcndndjlei
URL Ufficiale https://chromewebstore.google.com/detail/figma-cursor-toggle/lcncbmbpnkcbjmmofcjdiclcndndjlei
Descrizione Toggle between touch and default cursor in any Figma prototype
Dimensione del File 11.23 KB
Conteggio Installazioni 168
Versione Corrente 1.0
Ultimo Aggiornamento 2023-04-21
Data di Pubblicazione 2023-04-20
Sviluppatore marvinkennis
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}