API Reference
A list of all functions and attributes available on the framer
Plugin API.
Plugin UI
A set of functions for opening and closing the Plugin itself, along with options setting a specific size for your Plugin. Plugins are able to run completely UI-less if desired.
showUI(options)
hideUI()
closePlugin(message?: string)
Modes
A property with the current mode. Modes are used to understand the context in which the Plugin is being run, and adjust logic as needed. Learn more in the mode guide.
mode
User
Information about a the current user logged into Framer. Returns the name of the user, as well as a hashed User ID to uniquely identify the current user.
getCurrentUser()
Project
Information about the current Framer Project. Returns the display name of the Project as well as a hashed Project ID. This ID cannot be used to access the Project.
getProjectInfo()
Selection
Functions for reading, setting, or listening to the current selection on the Canvas. The returned list can range from zero items to a very large list of items.
getSelection()
setSelection(nodeIds)
subscribeToSelection(callback)
Assets
A selection of functions for working with Images, Files, and SVGs. The high-level add
and set
functions are designed to work in most cases and automatically handle uploading for you. Learn more in the working with Assets guide.
addImage(imageAsset)
setImage(imageAsset)
uploadImage(file)
uploadFile(file)
uploadFiles(files[])
addSvg(svgString)
Components
Functions for utilising Components in your Plugin. Learn more in the Component guide.
addComponentInstance({ url, attributes })
addDetatchedComponentLayers({ url, layout, attributes })
Text
A selection of functions for working with text layers and their content.
getText()
setText(text)
addText(text)
subscribeToText(callback)
Custom Code
With Custom Code your plugin can install code snippets in a user's Website via <script>
tags. Custom Code added by a Plugin appears in a separate section of a Project’s site settings specifically for Plugins. This can be used to load external scripts on a site. Custom code should be valid HTML.
setCustomCode(options)
getCustomCode()
subscribeToCustomCode(callback)
When setting Custom Code, you must provide the html string, as well as a location
.
The location
property has the following values:
headStart
- Injects the code snippet at the start of the HTML<head>
tagheadEnd
- Injects the code snippet at the end of the HTML<head>
tagbodyStart
- Injects the code snippet at the start of the<body>
tagbodyEnd
- injects the code snippet at the end of the<body>
tag
Setting the html
value back to null
clears the installed code snippet.
Drag & Drop
You can make images, SVG, and component instances, and detached component layers draggable using the framer.makeDraggable()
API. The function requires an HTML element as its first argument, and a function to generate the drag data as its second argument.
makeDraggable(element, getDragData)
<Draggable />
The following data types can be inserted via dragging.
image
svg
componentInstance
detachedComponentLayers
An example of this for an Icon Plugin would be a button with a click event which is also wrapped with the Draggable component. This allows for either clicking or dragging.
The process for doing this with a Component is quite similar, but with a different set of options for using a Component URL and allowing for layout block functionality.
CMS
Getters for CMS Collections within a Project. Learn more about the CMS functionality with Plugins and the different types of Collections in our CMS Guide.
getCollection(id)
getManagedCollection()
getActiveCollection()
getCollections()
Storing Data
Functions for storing data that your Plugin case use across users and sessions. Learn about the different ways to store data in our Data guide.
getPluginData(key)
setPluginData(key, value)
getPluginDataKeys()
Styles
A set of functions for creating, reading and manipulating the Color and Text Styles in a Project. Learn more in our Styles guide.
createColorStyle(attributes)
getColorStyle(id)
getColorStyles()
subscribeToColorStyles(callback)
createTextStyle(attributes)
getTextStyle(id)
getTextStyles()
subscribeToTextStyles(callback)
Fonts
Plugins can use typefaces available in the Font Picker to get information about specific fonts or to apply them to Text Styles.
getFont(family)
getFonts()
Unlike the Font Picker, which groups fonts by typeface, getFonts
will list individual fonts for each weight and style. You can think these as separate font files.
To get a specific font from a family, use getFont
and pass in the family name. This is not case sensitive. By default, this will return a font in the family that has a normal weight and style.
Make sure to check that a font exists before using it. If a font does not exist, getFont
will return null
.
Note: Custom Fonts are not available to Plugins
Editor
Functions for common actions in the Framer Editor, like going to a specific node on the canvas, or displaying a message in a toast.
zoomIntoView(nodeId)
notify(message, options?: NotifyOptions)
You can automatically adjust the viewport's pan and zoom so that a node appears in the center. This is the equivalent to using Zoom to Selection in the UI, except you can use any list of Nodes.
Nodes
Low-level API for working with Nodes. Useful for doing very specific tasks that may not be covered by the higher-level APIs. Learn more in our working with Nodes guide.