Skip to content

ecomfe/tempad-dev

Repository files navigation

TemPad Dev

Inspect panel on Figma, for everyone.

📦 Install on Chrome Web Store

Shows a screenshot of the extension panel.

Important

2024.03.19: Figma removed the window.figma interface in view-only mode. As a result, we can no longer seamlessly view information and code for Figma elements in view-only mode.

2024.03.20: After we posted complaints on the Figma Community Forum, the Figma team stated that they would reinstate the window.figma interface in view-only mode in the coming weeks. You can track the progress of this issue on this thread.

2024.04.03: The Figma team adjusted the expected time from "in the coming weeks" to "in the coming months," effectively shelving the issue.

Note

2024.04.08: TemPad Dev successfully retrieved most style information using currently unblocked debug interfaces, providing a new Quirks Mode. This mode does not rely on window.figma but instead parses debug logs to generate style code, with slight differences from the standard mode.

Key features

Inspect CSS code

Select any element, and you can obtain the CSS code through the plugin's Code panel. In addition to standard CSS code, TemPad Dev also provides styles in the form of JavaScript objects, making it convenient for use in JSX and similar scenarios.

You can configure CSS units and Root font size to convert px dimensions in CSS to rem units. After switching units, only the code output in the TemPad Dev panel will switch to non-px units; the plugin cannot affect the display of sizes and spacing on the Figma canvas.

Deep select mode

In Figma's read-only view, selecting nodes requires double-clicking to drill down, and it often takes repeated double-clicks to select the lowest-level node. Although Figma offers a + Click shortcut, many users are unaware of this feature and need to perform extra key operations each time. Therefore, TemPad Dev provides a lockable deep select mode in the settings.

Measure to selection mode

In Figma's read-only view, you need to hold and move the cursor to display the spacing between other nodes and the selected node. For similar reasons to the deep select mode, TemPad Dev provides a lockable measure to selection mode in the settings.

Scroll selection into view

When you hover over a node name block, a corresponding button appears. Clicking it will scroll the current selection to the center of the Figma viewport. Figma has a similar ⇧2 shortcut, but it zooms in to fill the viewport, which often doesn't meet the needs. Figma actually exposes an interface in the plugin API to move and zoom to 100%, so we also provide this capability as a supplement.

Inspect TemPad component code

Warning

This feature only works with elements produced by the TemPad Figma plugin, which is only available internally inside Baidu, Inc. at the moment.

This feature is only applicable to components output during the design phase through the TemPad Figma plugin and currently only supports Light Design components.

If there are components output by the TemPad Figma plugin on the canvas, TemPad Dev can directly output the component's invocation code in the Code panel. You can also quickly jump to the TemPad Playground to preview and debug the runnable code.

Quirks mode

Note

New in v0.1.0

Starting from TemPad Dev v0.1.0, a Quirks Mode is added, allowing use without relying on window.figma. In this mode, style codes are parsed through Figma's debug log information, slightly different from the information read directly through the Plugin API (window.figma) in standard mode. Known missing features generating style codes include:

  • Styles added through Effects, corresponding to CSS properties like box-shadow, filter: blur(), and backdrop-filter: blur().
  • Gradient fill styles. TemPad Dev can only detect the existence of a gradient and outputs it as linear-gradient(<color-stops>).
  • Fill styles' blend mode, corresponding to the background-blend-mode CSS property.
  • font-family of text nodes, which is obtained heuristically and may be inaccurate.
  • Advanced OpenType configurations for text nodes, other than numeric styles, which are generally not used.
  • The “Scroll Selection into View” feature is not available in this mode.

Except for the above-mentioned features, others are mostly consistent with the standard mode. If Quirks Mode is sufficient for your scenarios, it can eliminate the tedious operation of copying to drafts and be used directly in view-only mode. Note that this mode also relies on Figma's globally exposed debug interface and cannot guarantee long-term validity. If Figma removes the related interface again, this mode will also become invalid.

Acknowledgements

Built with WXT, TypeScript and Vue 3.

Inspired by the following projects: