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
- Host: GitHub
- URL: https://github.com/victorb/figma-shared-plugin-data
- Owner: victorb
- License: mit
- Created: 2020-11-13T10:09:00.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-12-21T15:30:09.000Z (over 5 years ago)
- Last Synced: 2025-10-07T23:36:49.007Z (9 months ago)
- Size: 5.86 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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` |