Launch Handler API Demo - Online Control App Launch Behavior
Configure how your PWA launches: focus existing or create new. Test with the launch_handler manifest field.
UD5 Toolkit
Configure how your PWA launches: focus existing or create new. Test with the launch_handler manifest field.
Use the File System Access API with file handles for persistent read/write. Learn incremental saving patterns.
Compress and decompress text using the browser's native Compression Streams API. See the binary output size.
Test the Content Indexing API to add a page to the device's content feed. See how your PWA integrates with the OS.
Use the document.fonts API to check if a font is loaded. Watch the ready promise. Avoid FOUT. JavaScript demo.
List all resources loaded by the current page and their detailed timing breakdown. In‑browser waterfall.
See your current page load broken down into DNS, TLS, request, and DOM phases. Understand where time is spent.
Open the same page in two tabs and send messages between them. See real‑time cross‑tab communication. Learn the API.
Select text and see the Selection object properties. Create ranges programmatically. Understand how rich‑text editors work.
Query the permission state of camera, microphone, geolocation, and more. See the response and learn the API.
Select HTTP method, set headers, and body. Send requests and see the full response. Lightweight Postman alternative.
See a comprehensive table of which modern web APIs your current browser supports. Includes WebGPU, AVIF, and more.
See your current page load broken down into DNS, TLS, request, and DOM phases. Understand where time is spent.
Connect a game controller and see every button press, axis movement, and vibration test. Uses the Gamepad API.
Test required, pattern, minlength etc. See validity states and custom error messages. Learn browser‑native validation.
Unified input demo: see pressure, tilt, and type from any pointer. Compare pointerType values. Essential for drawing apps.
Modify the DOM via buttons and see MutationRecords logged. Understand childList, attributes, and subtree options.
Drag to resize a box and see the Resize Observer callback fire. Get contentRect and borderBoxSize. Learn the API.
Write JavaScript using element.animate() and see the result in a live preview. Compare with CSS keyframes. Debugger included.
Toggle a screen wake lock to prevent the device from dimming or sleeping. See the lock state and learn the API.
Test the experimental Translation API to translate text between languages directly in the browser, without cloud calls. Check support and copy the JavaScript starter.
Decode an image progressively using the ImageDecoder API. See partial results and metadata. Modern alternative to <img>.
Decode individual video frames from a local file using the VideoDecoder API. Step through frames. Cutting‑edge browser feature.
Write to shared storage and run a worklet to process data. Learn the privacy‑preserving alternative to third‑party cookies.
Issue and redeem Private State Tokens (formerly Trust Tokens). Understand how they help detect bots without cookies.
Experiment with the Federated Credential Management API. Simulate a sign‑in flow without third‑party cookies. Privacy‑first.
Check if your related native or PWA app is installed. See the API in action and copy the code.
Test sharing multiple files (images, PDFs) using the Web Share API. Check if the browser supports file sharing. Demo page.
Register a periodic background sync with a minimum interval. See the registration state and tags. Keep content fresh.
Register a one‑off background sync and see it fire when connectivity returns. Debug service worker sync logic.
Open a test video in Picture‑in‑Picture mode. Control entering and leaving PiP. Copy the code snippet for your own app.
Set media metadata and play/pause controls for the OS media widget. Test action handlers. Perfect for web audio apps.
Connect to a BLE device and read its Battery Service characteristic. See the charge level in a gauge.
Request a USB device and communicate with it using the Web USB API. See vendor and product IDs. Experimental.
Request HID devices and list them. Read input reports and send output. For custom hardware and controllers.
Connect to a serial device (Arduino, etc.) via the Web Serial API. Send and receive text. No native app needed.
Read the ambient atmospheric pressure in hPa using the Pressure Sensor API (if available). Real‑time graph.
Visualize real‑time linear acceleration (excluding gravity). Watch the 3D vector graph move as you shake the device.
Request permission and detect when the user is idle (away from keyboard). See screen lock state. For native‑like apps.
Demonstrate how the Web OTP API automatically reads one‑time codes from SMS (mobile). Simulation with a fake SMS input.
Enumerate all fonts installed on your device and see a real‑time preview. Useful for design tools. Permission required.
Pick a contact from the device’s address book (mobile). Read name, email, and phone. All permission‑based. Privacy safe.
Request and release a screen wake lock to keep the device awake. See the lock state in real time. Perfect for recipes or presentations.
Use the EyeDropper API to sample a color from anywhere on your screen. Click, select, and copy the hex. No extensions needed.
Acquire and release locks across tabs. Prevent race conditions in IndexedDB or localStorage. Visual queue and lock state.
Intercept and manage navigations without reloading. Test transition handling and URL updates. The future of client‑side routing.
Schedule tasks with user‑visible, user‑blocking, or background priority. See execution order and delays. Modern web perf.
Read, write, and delete cookies using the modern Cookie Store API. Monitor change events. No more document.cookie parsing.
Test the modern File System Access API. Open a file, modify it, and save back to disk. All sandboxed in browser.
Connect a gamepad and see all button presses and axis movements visually. Check that every input is detected correctly.
Trigger different vibration patterns on mobile devices. Test if your phone supports haptic feedback. Simple demo.
Check notification permission, request it, and send a test notification. Verify icon, body, and tag. Debug web push.
Display your effective connection type (4g, 3g, etc.) and downlink speed using the Navigator API. Adapt your app accordingly.
See your device's battery level, charging status, and discharge time using the Battery Status API. Fun utility.
Check current screen orientation and test the lock API. Useful for mobile web apps. Demo with code.
Test the new HTML popover attribute for creating accessible tooltips, menus, and dialogs without JavaScript. Copy code snippets.
See the View Transitions API in action. Cross‑fade and morph between two states. Copy the JavaScript starter code.
Experiment with the Async Clipboard API: read/write text and images from the clipboard. Verify permissions and see demo code.
Test the Web Share API by sharing text, links, and files directly from the browser. Check compatibility and see example code.
Enter an API URL and quickly check its HTTP status code and response time. See response headers and body. Browser fetch.