Ghost Screen

Ghost Screen

Easier comparing Figma design with its implementation for designers and developers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "0.0.14",
  "manifest_version": 2,
  "default_locale": "en",
  "name": "__MSG_EXTENSION_NAME__",
  "description": "__MSG_EXTENSION_DESCRIPTION__",
  "permissions": [
    "*://*/*",
    "storage",
    "tabs"
  ],
  "web_accessible_resources": [
    "fonts/inter-400.woff",
    "fonts/inter-400.woff2",
    "fonts/inter-500.woff",
    "fonts/inter-500.woff2",
    "styles/fonts.css",
    "styles/workspace.css",
    "scripts/workspace.js"
  ],
  "background": {
    "page": "background.html",
    "persistent": true
  },
  "icons": {
    "32": "icons/32.png",
    "128": "icons/128.png"
  },
  "browser_action": {
    "default_icon": "icons/32.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-lc7RqjazxhzUTsmiv3eNlfgdnrxwEUoMKh/DLKpdtD8=' 'sha256-rcB4pkFgiUFBpLn+uBtqGHZ4sT0Iz3JEue2tktsK4KI=' https://www.google-analytics.com; object-src 'self'"
}