Figma Cursor Toggle

Toggle between touch and default cursor in any Figma prototype

什么是Figma Cursor Toggle?

Figma Cursor Toggle是由marvinkennis开发的Chrome扩展程序,该扩展的主要功能是“Toggle between touch and default cursor in any Figma prototype”。

扩展截图

screenshot

下载Figma Cursor Toggle扩展crx文件

下载Figma Cursor Toggle扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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!                    

扩展基本信息

名称 Figma Cursor Toggle Figma Cursor Toggle
ID lcncbmbpnkcbjmmofcjdiclcndndjlei
官方URL https://chromewebstore.google.com/detail/figma-cursor-toggle/lcncbmbpnkcbjmmofcjdiclcndndjlei
简介 Toggle between touch and default cursor in any Figma prototype
文件大小 11.23 KB
安装次数 168
当前版本 1.0
更新时间 2023-04-21
上架时间 2023-04-20
开发者 marvinkennis
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
        }
    ]
}