Figma Cursor Toggle

Toggle between touch and default cursor in any Figma prototype

What is Figma Cursor Toggle?

Figma Cursor Toggle is a Chrome extension developed by marvinkennis, and its main feature is "Toggle between touch and default cursor in any Figma prototype".

Extension Screenshots

screenshot

Download Figma Cursor Toggle Extension CRX File

Download Figma Cursor Toggle extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name Figma Cursor Toggle Figma Cursor Toggle
ID lcncbmbpnkcbjmmofcjdiclcndndjlei
Official URL https://chromewebstore.google.com/detail/figma-cursor-toggle/lcncbmbpnkcbjmmofcjdiclcndndjlei
Description Toggle between touch and default cursor in any Figma prototype
File Size 11.23 KB
Installation Count 168
Current Version 1.0
Last Updated 2023-04-21
Publish Date 2023-04-20
Developer marvinkennis
Email [email protected]
Payment Type free
Supported Languages 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"
        }
    ]
}