https://github.com/presentator/figma
Figma plugin for Presentator
https://github.com/presentator/figma
figma figma-plugin presentator
Last synced: 3 months ago
JSON representation
Figma plugin for Presentator
- Host: GitHub
- URL: https://github.com/presentator/figma
- Owner: presentator
- License: mit
- Created: 2019-12-26T12:44:45.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-09-22T10:44:31.000Z (10 months ago)
- Last Synced: 2025-03-27T09:40:08.907Z (4 months ago)
- Topics: figma, figma-plugin, presentator
- Language: JavaScript
- Homepage: https://www.figma.com/community/plugin/791989050714284849/presentator-export
- Size: 830 KB
- Stars: 12
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Presentator Figma plugin
======================================================================
Figma plugin to export design frames directly to Presentator v2 and v3.
OAuth2 authentication is supported only with Presentator v3.
- [Installing](#installing)
- [Development](#development)## Installing
#### From Figma Plugins Page
Visit https://www.figma.com/community/plugin/791989050714284849/presentator-export and click "Open in Figma".
#### Manually
1. Download or clone the plugin repo.
2. Go to _Plugins > Manage plugins > New plugin (+) > Import plugin from manifest_ and select the `manifest.json` file of the plugin.
## Development
The plugin is consisted of 2 parts:
- Figma plugin initialization code located in `src/figma.js`.
- Everything else is the plugin dialog UI.1. Download or clone the plugin repo.
2. Run the appropriate console commands:
```bash
# installs dependencies
npm install# starts a Vite dev server of the UI to preview in the browser
npm run dev# builds both the UI and Figma plugin code in the dist directory
npm run build
```