Reputation: 41
I have a website running on a Samsung TV browser and I would like to inspect its network. Couldn't do it through Tizen Studio because it's not a project I'm working on, it's just a website running on Samsung Internet app. Is there a way to inspect it remotely?
Upvotes: 4
Views: 1866
Reputation: 526
I know this is an old question and an answer is already here. However, since this is your application, you can have a bit easier solution for that. Just add this script tag in the page and done. This will show the same inspect button as stated above but since it will be a part of the page, it will be easier to inspect and you will not even need to add bookmark etc. Also, few TV browsers may be more restrictive to let you call script from a bookmark
<html>
<body>
<script>
var script = document.createElement('script');
script.src = "//cdn.jsdelivr.net/npm/eruda";
document.body.appendChild(script);
script.onload = (() => eruda.init());
</script>
</body>
</html>
Upvotes: 0
Reputation: 47
javascript:(() => {var script = document.createElement('script');script.src = "//cdn.jsdelivr.net/npm/eruda";document.body.appendChild(script);script.onload = (() => eruda.init());})()
You can watch this video for reference
it worked on a phone but not on an LG TV as I see it but can't click it so you could try if it worked that's great
Upvotes: 2