Figma UI Mod

Figma UI enhancements and Analytics CSV export

Figma UI Mod क्या है?

Figma UI Mod Josh Harwood द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Figma UI enhancements and Analytics CSV export"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Figma UI Mod एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}