Figma Clean Prototypes

Figma Clean Prototypes

Disables the interface on Figma's prototypes so users don't get confused when user testing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Figma Clean Prototypes",
  "version": "0.0.3",
  "manifest_version": 2,
  "description": "Disables the interface on Figma's prototypes so users don't get confused when user testing.",
  "browser_action": {
    "default_icon": "off.png"
  },
  "background": {
    "scripts": [
      "tester.js"
    ]
  },
  "permissions": [
    "https://www.figma.com/proto/*"
  ]
}