Infinite Craft Userscript Jun 2026
// ==UserScript== // @name Infinite Craft Enhanced // @namespace http://tampermonkey.net/ // @version 1.0 // @description Recipe book, auto-learn, and quick craft for Infinite Craft // @author You // @match https://neal.fun/infinite-craft/ // @icon https://www.google.com/s2/favicons?sz=64&domain=neal.fun // @grant none // ==/UserScript==
function init() // Store discovered elements and recipes let discovered = new Set(); let recipes = new Map(); // elementName -> [left, right] infinite craft userscript
document.body.appendChild(panel);
function sleep(ms) return new Promise(r => setTimeout(r, ms)); // ==UserScript== // @name Infinite Craft Enhanced //