Figma Dark Theme

Figma Dark Theme

A Dark theme for all of Figma pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Figma Dark Theme",
  "description": "A Dark theme for all of Figma pages.",
  "version": "1.0.1",
  "browser_action": {
    "default_icon": "images/logo.png",
    "default_popup": "html/popup.html"
  },
  "background": {
    "scripts": [
      "js/background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.figma.com/*"
      ],
      "js": [
        "js/theme.js"
      ],
      "css": [
        "css/theme.dark.css"
      ],
      "run_at": "document_start"
    }
  ],
  "options_page": "html/options.html",
  "homepage_url": "https://github.com/logeast/figma-dark-theme",
  "permissions": [
    "storage"
  ],
  "icons": {
    "64": "images/logo64.png",
    "128": "images/logo128.png",
    "192": "images/logo192.png"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}