Plutonium GCDN

A collection of browser-playable games, served as standalone HTML files via a CDN-friendly directory structure.

Structure
/
├── config.json       # Game registry (names, paths)
├── details.json      # Descriptions, controls, banners, sync, tags
└── games/            # One folder per game
    ├── cookie-clicker/index.html
    ├── motox3m/index.html
    └── ...
config.json fields
FieldDescription
idURL-safe slug matching the filename
nameHuman-readable display name
pathRelative path to the game's HTML file
imageRelative path to the game's thumbnail
details.jsonPer-game metadata keyed by game id
Adding a Game
  1. Add the self-contained game page as games/<game-id>/index.html.
  2. Add a corresponding entry to the games array in config.json.
  3. Add matching metadata to details.json.