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
Eメール [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"
        }
    ]
}