Figma UI Mod
Figma UI enhancements and Analytics CSV export
Что такое Figma UI Mod?
Figma UI Mod - это расширение Chrome, разработанное Josh Harwood, и его основная функция - "Figma UI enhancements and Analytics CSV export".
Снимки экрана расширения
Скачать файл CRX расширения Figma UI Mod
Скачайте файлы расширений 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" } } |