An open API service indexing awesome lists of open source software.

https://github.com/victorb/figma-shared-plugin-data

List of Figma Plugins and their shared data
https://github.com/victorb/figma-shared-plugin-data

Last synced: 4 months ago
JSON representation

List of Figma Plugins and their shared data

Awesome Lists containing this project

README

          

# figma-shared-plugin-data
> List of Figma Plugins and their shared data

## Introduction

The idea of this repository is to collect Figma Plugins who set their data via the `setSharedPluginData` API. Together with the name of the plugin, its namespace, the keys and also what data structure it's using, we can make it easier for plugins to work with each other.

More information about `setSharedPluginData` here: https://www.figma.com/plugin-docs/api/properties/nodes-setsharedplugindata/

### Shared Data

| Community Page | Plugin Name | Source Code | Namespace | Key | Structure of value | Set on Node Type |
|-------------------------------------------------------------------|-------------|------------------------------------------|-----------|-------|-------------------------------------|---|
| [Figma Community Page](https://www.figma.com/community/plugin/735098390272716381/Iconify) | Iconify | https://github.com/iconify/iconify-figma | `iconify` | `props` | JSON string with `name`, `color` and `props` | `FrameNode` |
| [Figma Community Page](https://www.figma.com/community/plugin/843461159747178978/Figma-Tokens) | Figma Tokens | https://github.com/six7/figma-tokens | `tokens` | `values` | JSON string as [`TokenData`](https://github.com/six7/figma-tokens/blob/f5a690244a05542b825b456a81703af412fa773a/src/app/components/TokenData.tsx) | Root `DocumentNode` |
| [Figma Community Page](https://www.figma.com/community/plugin/735442706723922553/Blend) | Blend | closed source | `blend` | `IS_BLEND_GROUP / PATH / NODE`, `STEPS`, `SPACING` | [Values descriptions](https://gist.github.com/zyumbik/b617bde0800682036a5cefbe506c49f6) | `SceneNode` |