UNPKG

network-plate

Version:

A JS library to bring network tab on your screen

27 lines 1.2 kB
<!DOCTYPE html> <html> <head> <meta charset='utf-8'> <title>Network Plate</title> </head> <body> <h1>This is a demo page</h1> <form> <input value="Hey there"/> <button>Go</button> <img src="https://images.unsplash.com/photo-1525547719571-a2d4ac8945e2?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=700&q=80"/> <img src="https://images.unsplash.com/photo-1545239351-ef35f43d514b?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=967&q=80s" /> </form> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.map"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.slim.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.slim.min.map"></script> <script> setTimeout(() => { var sc = document.createElement("script"); sc.src = "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.js"; document.getElementsByTagName("body")[0].appendChild(sc); }, 3000) </script> <script src='node_modules/network-plate/scripts/main.js'></script> </body> </html>