AidKit for Webflow

AidKit for Webflow

Unlock a suite of tools made for Webflow developers. Customize & automate your development process using industry best practices.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AidKit for Webflow",
  "version": "1.5.2",
  "description": "Unlock a suite of tools made for Webflow developers. Customize & automate your development process using industry best practices.",
  "content_scripts": [
    {
      "matches": [
        "*://*.design.webflow.com/*"
      ],
      "js": [
        "jquery-3.6.4.min.js",
        "content.js"
      ]
    }
  ],
  "action": {
    "default_title": "🔧 AidKit for Webflow",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/icon-32-grey.png",
    "32": "images/icon-32-grey.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "*://*.design.webflow.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "jquery-3.6.4.min.js",
        "content.js",
        "Ubuntu-Regular.ttf",
        "Ubuntu-Bold.ttf",
        "Caveat-Bold.ttf",
        "images/aidkit_logo.webp"
      ],
      "matches": [
        "*://*.webflow.com/*"
      ]
    }
  ]
}