Figma UI Mod
Figma UI enhancements and Analytics CSV export
Was ist Figma UI Mod?
Figma UI Mod ist eine Chrome-Erweiterung, die von Josh Harwood entwickelt wurde, und ihr Hauptmerkmal ist "Figma UI enhancements and Analytics CSV export".
Erweiterungsscreenshots
Figma UI Mod-Erweiterungs-CRX-Datei herunterladen
Laden Sie Figma UI Mod-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Figma UI Mod |
ID | pakkdlcbmijjkcocojcgonopnbkeolle |
Offizielle URL | https://chromewebstore.google.com/detail/figma-ui-mod/pakkdlcbmijjkcocojcgonopnbkeolle |
Beschreibung | Figma UI enhancements and Analytics CSV export |
Dateigröße | 658 KB |
Installationsanzahl | 380 |
Aktuelle Version | 0.7.9 |
Letztes Update | 2023-08-31 |
Veröffentlichungsdatum | 2023-03-06 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Josh Harwood |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/NoWorries/chrome-figma-ui-mod |
Hilfeseite URL | https://github.com/NoWorries/chrome-figma-ui-mod/issues |
URL der Datenschutzrichtlinien-Seite | https://noworries.nz/privacy |
Unterstützte Sprachen | 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" } } |