{
  "$schema": "https://json.schemastore.org/chrome-manifest.json",
  "manifest_version": 3,
  "version": "0.7.2",
  "default_locale": "en",
  "name": "__MSG_appName__",
  "description": "__MSG_appDescription__",
  "icons": {
    "16": "src/images/icon-16.png",
    "48": "src/images/icon-48.png",
    "128": "src/images/icon-128.png"
  },
  "action": {
    "default_icon": {
      "16": "src/images/icon-16.png",
      "48": "src/images/icon-48.png",
      "128": "src/images/icon-128.png"
    },
    "default_title": "Kumaflow - Webflow UI Localization"
  },
  "options_ui": {
    "page": "src/options/index.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "src/background.ts"
  },
  "update_url": "https://example.com/updates/kumaflow/update.xml",
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://webflow-ui-localization.pages.dev/*",
    "https://cdn.jsdelivr.net/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://webflow.com/dashboard*",
        "https://webflow.com/login*",
        "https://webflow.com/signup*",
        "https://webflow.com/forgot*",
        "https://preview.webflow.com/*",
        "https://*.design.webflow.com/*"
      ],
      "js": [
        "src/content/scripts.ts"
      ],
      "css": [
        "src/content/styles.css"
      ],
      "run_at": "document_idle"
    }
  ]
}
