Figma UI Mod
Figma UI enhancements and Analytics CSV export
O que é Figma UI Mod?
Figma UI Mod é uma extensão do Chrome desenvolvida por Josh Harwood, e sua principal característica é "Figma UI enhancements and Analytics CSV export".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Figma UI Mod
Baixe arquivos de extensão Figma UI Mod no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Figma UI Mod |
ID | pakkdlcbmijjkcocojcgonopnbkeolle |
URL Oficial | https://chromewebstore.google.com/detail/figma-ui-mod/pakkdlcbmijjkcocojcgonopnbkeolle |
Descrição | Figma UI enhancements and Analytics CSV export |
Tamanho do Arquivo | 658 KB |
Contagem de Instalações | 380 |
Versão Atual | 0.7.9 |
Última Atualização | 2023-08-31 |
Data de Publicação | 2023-03-06 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Josh Harwood |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/NoWorries/chrome-figma-ui-mod |
URL da Página de Ajuda | https://github.com/NoWorries/chrome-figma-ui-mod/issues |
URL da Página de Política de Privacidade | https://noworries.nz/privacy |
Idiomas Suportados | 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" } } |