Figma UI Mod
Figma UI enhancements and Analytics CSV export
Figma UI Modとは何ですか?
Figma UI ModはJosh Harwoodによって開発されたChromeの拡張機能で、その主な機能は「Figma UI enhancements and Analytics CSV export」です。
拡張機能のスクリーンショット
Figma UI Mod拡張機能のCRXファイルをダウンロード
Figma UI Mod拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Provide powerful options for Figma users, including: 1) Export Analytics as CSV • Export detailed library or component analytics as CSV (Analytics modal needs to be visible on screen) 2) Enable several CSS overrides to adjust the Figma UI to make better of available space on larger viewports: • Doubled the width of the Properties Panel (Right hand sidebar) – reduce truncation • Wider Select Dropdowns – reduce truncation • Increased the size of File Preview thumbnail – more space due to the wider sidebar • Added horizontal scroll to the Layer List – avoid truncation of layer names • Increased the size of Library Analytics modal – instead of a narrow modal it now takes up the full viewport • Swap instance picker enlarged – reduce truncation
拡張機能の基本情報
名前 | Figma UI Mod |
ID | pakkdlcbmijjkcocojcgonopnbkeolle |
公式URL | https://chromewebstore.google.com/detail/figma-ui-mod/pakkdlcbmijjkcocojcgonopnbkeolle |
説明 | Figma UI enhancements and Analytics CSV export |
ファイルサイズ | 658 KB |
インストール数 | 380 |
現在のバージョン | 0.7.9 |
最終更新日 | 2023-08-31 |
公開日 | 2023-03-06 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | Josh Harwood |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/NoWorries/chrome-figma-ui-mod |
ヘルプページのURL | https://github.com/NoWorries/chrome-figma-ui-mod/issues |
プライバシーポリシーページのURL | https://noworries.nz/privacy |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Figma UI Mod", "description": "Figma UI enhancements and Analytics CSV export", "version": "0.7.9", "manifest_version": 3, "action": { "default_title": "Figma enhance", "default_popup": "popup.html" }, "host_permissions": [ "https:\/\/*.figma.com\/file\/*", "https:\/\/*.figma.com\/files\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.figma.com\/file\/*", "https:\/\/*.figma.com\/files\/*" ], "js": [ "background.js" ] } ], "permissions": [ "scripting", "activeTab" ], "icons": { "16": "favicon_16.png", "32": "favicon_32.png", "48": "favicon_48.png", "128": "favicon_128.png" } } |