Figma Cursor Toggle

Toggle between touch and default cursor in any Figma prototype

Was ist Figma Cursor Toggle?

Figma Cursor Toggle ist eine Chrome-Erweiterung, die von marvinkennis entwickelt wurde, und ihr Hauptmerkmal ist "Toggle between touch and default cursor in any Figma prototype".

Erweiterungsscreenshots

screenshot

Figma Cursor Toggle-Erweiterungs-CRX-Datei herunterladen

Laden Sie Figma Cursor Toggle-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Figma Cursor Toggle Figma Cursor Toggle
ID lcncbmbpnkcbjmmofcjdiclcndndjlei
Offizielle URL https://chromewebstore.google.com/detail/figma-cursor-toggle/lcncbmbpnkcbjmmofcjdiclcndndjlei
Beschreibung Toggle between touch and default cursor in any Figma prototype
Dateigröße 11.23 KB
Installationsanzahl 168
Aktuelle Version 1.0
Letztes Update 2023-04-21
Veröffentlichungsdatum 2023-04-20
Entwickler marvinkennis
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}