Kascade

Kascade

Automatically identify style systems and export to Figma and other tools while browsing webpages with Kascade.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Kascade",
  "description": "Automatically identify style systems and export to Figma and other tools while browsing webpages with Kascade.",
  "version": "1.1.1",
  "action": {
    "default_title": "Click to open panel",
    "default_icon": {
      "16": "images/kascade-16.png",
      "32": "images/kascade-32.png",
      "48": "images/kascade-48.png",
      "128": "images/kascade-128.png"
    }
  },
  "background": {
    "service_worker": "styles-profiler-click-listener.js",
    "scripts:": "dist/ExtPay.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    },
    {
      "matches": [
        "https://extensionpay.com/*"
      ],
      "js": [
        "ExtPay.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "images/kascade-16.png",
    "32": "images/kascade-32.png",
    "48": "images/kascade-48.png",
    "128": "images/kascade-128.png"
  },
  "permissions": [
    "activeTab",
    "tabs",
    "sidePanel",
    "contextMenus",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "side_panel": {
    "default_path": "index.html"
  }
}