The Settings page (Documentation Index
Fetch the complete documentation index at: https://mintlify.com/theinfamouscoder5/codys-shack-games/llms.txt
Use this file to discover all available pages before exploring further.
misc.html) — labelled Settings in the navigation bar — is home to two lightweight privacy utilities: the Tab Cloaker and the about:blank Opener. Neither tool requires an account or any configuration beyond what you enter in the inputs. Both tools are powered by plain JavaScript in js/misc.js, with js/main.js re-applying your saved preferences on every page load across the entire site.
Tab Cloaker
The Tab Cloaker lets you replace the browser tab’s title and favicon with anything you like. Your choices are saved tolocalStorage, so they persist across page reloads and apply site-wide — not just on the Settings page.
How it applies on every page
js/main.js runs on every page of Cody’s Shack. At load time it reads your saved preferences from localStorage and applies them immediately:
The cloaker functions (js/misc.js)
validURL() helper validates the icon input against a regex before saving it, so entering a plain word instead of a URL will produce a red error message rather than a broken icon.
Using the Tab Cloaker
Set a custom tab title
Type any text into the input field on the Settings page and click Set Title. The tab title changes instantly, and the value is saved to
localStorage so it persists on every page of the site.Set a custom favicon
Paste a valid image URL into the same input field and click Set Icon. The favicon in your browser tab updates immediately. The URL must begin with
http:// or https:// to pass validation.about:blank Opener
The about:blank Opener loads any URL you choose inside a brand-new browser window whose address bar readsabout:blank. Because the window is opened programmatically, the URL bar never shows the game site’s domain — it shows only about:blank.
How it works (js/misc.js)
<iframe> that fills the entire viewport. The referrerpolicy="no-referrer" attribute prevents the destination site from seeing where the request originated.
Using the about:blank Opener
Enter a URL
Type or paste the URL you want to open into the input field under the about:blank heading. You can omit the
https:// prefix — the script will add it automatically.Click Create page
Click the Create page button. A new browser window will open. Its address bar will show
about:blank regardless of which site is loaded inside the iframe.Some websites send
X-Frame-Options: DENY or Content-Security-Policy: frame-ancestors 'none' headers that prevent them from being displayed inside an iframe, even inside an about:blank window. If the target page appears blank, this restriction is the most likely cause. As a workaround, consider using the URL of the Cody’s Shack game page itself inside the about:blank opener for a second layer of concealment, as the site does not block its own frames.