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"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ 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 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"
    }
}