Fluid Engine Tablet Spacing Fixer

Fluid Engine Tablet Spacing Fixer

Makes Squarespace's mobile breakpoint larger so that you can fix Fluid Engine spacing issues on screen sizes between mobile & tablet

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Fluid Engine Tablet Spacing Fixer",
  "description": "Makes Squarespace's mobile breakpoint larger so that you can fix Fluid Engine spacing issues on screen sizes between mobile & tablet",
  "version": "0.1.5",
  "manifest_version": 3,
  "permissions": [
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "*://*.squarespace.com/config*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.squarespace.com/config*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_title": "Fix Fluid Engine Tablet Spacing"
  },
  "icons": {
    "16": "images/icon16.png",
    "32": "images/icon32.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}