Figma UI Mod

Figma UI enhancements and Analytics CSV export

Qu'est-ce que Figma UI Mod ?

Figma UI Mod est une extension Chrome développée par Josh Harwood, et sa fonction principale est "Figma UI enhancements and Analytics CSV export".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Figma UI Mod

Téléchargez les fichiers d'extension Figma UI Mod au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Figma UI Mod Figma UI Mod
ID pakkdlcbmijjkcocojcgonopnbkeolle
URL Officiel https://chromewebstore.google.com/detail/figma-ui-mod/pakkdlcbmijjkcocojcgonopnbkeolle
Description Figma UI enhancements and Analytics CSV export
Taille du Fichier 658 KB
Nombre d'Installations 380
Version Actuelle 0.7.9
Dernière Mise à Jour 2023-08-31
Date de Publication 2023-03-06
Évaluation 5.00/5 Total 2 Évaluations
Développeur Josh Harwood
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/NoWorries/chrome-figma-ui-mod
URL de la Page d'Aide https://github.com/NoWorries/chrome-figma-ui-mod/issues
URL de la Page de Politique de Confidentialité https://noworries.nz/privacy
Langues Prises en Charge 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"
    }
}