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 |
官方網址 | 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" } } |