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"입니다.

확장 프로그램 스크린샷

screenshot

Figma UI Mod 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    }
}