Potato Extension for Webflow

Potato Extension for Webflow

Potato is your Webflow companion, toss it into your workflow and watch it sprout with time-saving features!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Potato Extension for Webflow",
  "version": "0.2.1",
  "description": "Potato is your Webflow companion, toss it into your workflow and watch it sprout with time-saving features!",
  "icons": {
    "48": "images/Potato-48.png",
    "128": "images/Potato-128.png"
  },
  "action": {
    "default_popup": "component.html",
    "default_icon": {
      "48": "images/Potato-48.png"
    }
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "*://webflow.com/*",
    "*://*.design.webflow.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://webflow.com/*",
        "*://*.design.webflow.com/*"
      ],
      "js": [
        "scripts/initialize.js",
        "scripts/functions.js"
      ],
      "css": [
        "styles/component.css"
      ]
    }
  ],
  "background": {
    "service_worker": "scripts/background.js"
  }
}