Figma Search

Search through Figma objects even in “View only” mode

Cos'è Figma Search?

Figma Search è un'estensione di Chrome sviluppata da Igor Adamenko, e la sua funzione principale è "Search through Figma objects even in “View only” mode".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Figma Search

Scarica i file di estensione Figma Search in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension allows you search for Figma objects. Currently Figma does not have such built-in option, so you can use this plugin as a temporary solution.

The extension works even in “View only” mode, where no other Figma plugins work.                    

Informazioni di Base sull'Estensione

Nome Figma Search Figma Search
ID lfofpannpmmeeicgiiacjghmcfgnebbi
URL Ufficiale https://chromewebstore.google.com/detail/figma-search/lfofpannpmmeeicgiiacjghmcfgnebbi
Descrizione Search through Figma objects even in “View only” mode
Dimensione del File 136 KB
Conteggio Installazioni 698
Versione Corrente 1.3.2
Ultimo Aggiornamento 2021-04-29
Data di Pubblicazione 2021-03-08
Valutazione 4.20/5 Totale 5 Valutazioni
Sviluppatore Igor Adamenko
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/igoradamenko/figma-search-extension
URL della Pagina di Aiuto https://github.com/igoradamenko/figma-search-extension/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Figma Search",
    "version": "1.3.2",
    "description": "Search through Figma objects even in \u201cView only\u201d mode",
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs"
    ],
    "icons": {
        "256": "icon.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+F"
            },
            "description": "Open the extension"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.figma.com\/*"
            ],
            "js": [
                "figma-bg.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "figma-bridge.js"
    ]
}