UI Verifier

UI Verifier

UI verifier can be used to quickly and easily check the completeness and consistency of your Figma UI designs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "UI Verifier",
  "version": "2.0.5",
  "description": "UI verifier can be used to quickly and easily check the completeness and consistency of your Figma UI designs.",
  "manifest_version": 3,
  "icons": {
    "16": "/img/16x16.png",
    "32": "/img/32x32.png",
    "48": "/img/48x48.png",
    "128": "/img/128x128.png"
  },
  "permissions": [
    "scripting",
    "management",
    "tabs",
    "activeTab",
    "storage"
  ],
  "background": {
    "service_worker": "./js/background.js",
    "type": "module"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "minimum_chrome_version": "92",
  "action": {
    "default_icon": {
      "16": "/img/16x16.png",
      "32": "/img/32x32.png",
      "48": "/img/48x48.png",
      "128": "/img/128x128.png"
    },
    "default_popup": "./views/login/index.html",
    "default_title": "Press Ctrl+Shift+D to toggle Design"
  },
  "commands": {
    "toggle-design": {
      "suggested_key": {
        "default": "Alt+D",
        "mac": "Alt+D",
        "windows": "Alt+Shift+D",
        "linux": "Alt+Shift+D"
      },
      "description": "Toggle \"Design View\" on the current page."
    },
    "_execute_action": {
      "suggested_key": {
        "windows": "Alt+U",
        "mac": "Alt+U",
        "chromeos": "Alt+U",
        "linux": "Alt+U"
      }
    }
  }
}