1 Sauce It

Sauce is the universal connector at the table. Making sauces ahead of time enriches meals because you can serve them with everything, and the experience brings people together at the table.

// ==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); })();