Browser Cache Clear Guide
The Problem
Your browser cached the old static version of the site and won't load the new Docker version with the comprehensive API.
Solutions (Try in order)
Method 1: Hard Refresh + Cache Clear
Chrome/Edge:
- Open the site: https://chunte-thumbnail-crafter-mini-mcp-experiment.hf.space
- Press Ctrl + Shift + Delete
- Select:
- Time range: Last hour (or All time to be safe)
- Check: Cached images and files
- Click Clear data
- Close the browser completely
- Reopen and visit the site
- Press Ctrl + Shift + R (hard refresh)
Firefox:
- Press Ctrl + Shift + Delete
- Select Cache
- Clear
- Press Ctrl + F5 to reload
Method 2: Incognito/Private Window
Easiest way to bypass cache:
- Press Ctrl + Shift + N (Chrome) or Ctrl + Shift + P (Firefox)
- Go to: https://chunte-thumbnail-crafter-mini-mcp-experiment.hf.space
- Press F12 β Console
- Type:
window.thumbnailAPI
You should now see 50+ methods!
Method 3: DevTools Network Disable Cache
- Open the site
- Press F12 (DevTools)
- Go to Network tab
- Check βοΈ Disable cache
- Keep DevTools open
- Press Ctrl + R to reload
Method 4: Different Browser
If all else fails, try a different browser you haven't used for this site:
- If you used Chrome, try Firefox
- If you used Firefox, try Chrome
- Or try Edge, Safari, etc.
How to Verify It Worked
After clearing cache, open the console (F12) and run:
// Check available methods
Object.keys(window.thumbnailAPI)
β Old API (8 methods):
["loadLayout", "setBgColor", "replaceLogoPlaceholder", "addImage",
"updateText", "exportCanvas", "getInfo", "setCanvasSize"]
β New API (50+ methods):
["getCanvasState", "setCanvasSize", "setBgColor", "clearCanvas", "exportCanvas",
"listLayouts", "loadLayout", "addObject", "addHuggy", "listHuggys",
"updateObject", "deleteObject", "getObject", "listObjects", "selectObject",
"deselectAll", "getSelection", "bringToFront", "sendToBack", "moveForward",
"moveBackward", "moveObject", "resizeObject", "rotateObject",
"replaceLogoPlaceholder", "updateText", "searchAndReplace", "undo", "redo",
"getHistoryState", "batchUpdate", "findObjects", "downloadCanvas"]
Why This Happened
- The site was originally deployed as
sdk: static(just HTML/JS files) - Your browser cached everything
- We changed to
sdk: dockerand rebuilt - Hugging Face is now serving the new version
- But your browser still shows the cached old version
Proof New Version Is Live
We verified that:
- β
Server returns:
thumbnail-crafter-comprehensive - β
HTML references new JS file:
index-D9l80Lnu.js - β Docker container is running
- β Health endpoint works
The new version IS live - your browser just needs to be convinced to load it!