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 |
电子邮箱 | [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" } } |