Install
openclaw skills install inline-asset-probeFetch a URL with curl/wget, extract inline base64 data URIs, and best-effort decode any content to inspect embedded assets.
openclaw skills install inline-asset-probePractical utility for quickly extracting inline assets from HTML or CSS and inspecting base64-encoded payloads.
data:*;base64, assets and saves them as filesPowerShell:
powershell -ExecutionPolicy Bypass -File run.ps1.txt -Url https://example.com
Save raw response and decode any content:
powershell -ExecutionPolicy Bypass -File run.ps1.txt -Url https://example.com -SaveResponse -DecodeResponse
Limit extracted assets and choose output directory:
powershell -ExecutionPolicy Bypass -File run.ps1.txt -Url https://example.com -OutDir probe_out -MaxAssets 20
probe_out/response.bin when -SaveResponseprobe_out/assets/asset_*.ext for extracted inline assetsprobe_out/decoded.bin when -DecodeResponse-DecodeResponse performs a best-effort base64 decode of any content by stripping non-base64 characters and padding to a 4-byte boundary.