Im using this script to get Chrome inspect Element for Android since I don't have access to a desktop device:
javascript:(function () {
var script = document.createElement('script');
script.src="//cdn.jsdelivr.net/npm/eruda";
document.body.appendChild(script);
script.onload = function () {
eruda.init()
}
})();
I need to go to the Network part and reload to page to get the items in Network as it appears empty otherwise.
After i would need to click on the item , copy then "Copy as PowerShell" but when i reload it removes the Inspect Element UI without items and I'm not sure how to do the copy part on a Phone.
please may someone offer any solutions , im very new to JavaScript