5 Deconstruct Dishes

Serve meals with gluten, dairy, sauces, or any known allergens on the side so loved ones can mix and match based on dietary choices. Allow people to customize their plates without a spotlight.

// ==UserScript== // @name Beyondspace Ground Control // @namespace http://beyondspace.studio // @version 0.1 // @description Beyondspace tools for Squarespace // @author Beyondspace Studio // @match *://*/* // @icon https://www.google.com/s2/favicons?sz=64&domain=squarespace.com // @grant none // ==/UserScript== (function() { 'use strict'; // Check if we're in Squarespace function isSquarespace() { return window.Static && window.Static.SQUARESPACE_CONTEXT; } // Main initialization function init() { if (!isSquarespace()) { return; } console.log('Beyondspace Ground Control: Squarespace detected, injecting scripts...'); (()=>{var e="beyondspace--ground-control";if(!window.top.document.getElementById(e)){var t=window.top.document.createElement("script");t.id=e,t.src="https://cdn.jsdelivr.net/gh/BeyondspaceStudio/beyondspace-snippets@0.0.71/src/ground-control/index.min.js?packages=assets-library-enhanced",window.top.document.body.appendChild(t)}})(); console.log('Beyondspace Ground Control: Successfully injected!'); } // Start initialization after a short delay to ensure Squarespace context is loaded setTimeout(init, 1000); })();