I have a samsung note pro 12.2 and was wondering how I could inspect element on the browser without connecting to a computer? I understand for smaller devices this makes sense to connect to a computer but for a tablet this size or even a 10 inch, the real estate of the screen would allow me to have an efficient workflow. If this is possible, I would be able to design on the go making it so much easier than carrying around my laptop. Perhaps there is a special browser to use?
I have done it before. But it was an rooted device wi custom ROM.
If you use a custom ROM as well you only need to enable ADB over WiFi and everything will work perfectly from there as when it's connected via cable. The vast majority of custom ROMs have this option, and even the ones that don't have the solution isn't that hat. Take a look in this answer.
Update:
There's also another answer to that very question that explains how to connect via adb via tcp without a rooted phone. here.
If you prefer to use Google Chrome as your mobile browser, you can add a bookmarklet that allows you to inspect elements directly from your device. Here’s how to do it:
- Open the Chrome browser on your Android device.
- Tap the More Icon in the top right corner of the screen and select “Bookmarks” from the options.
- Find and edit any bookmark from the list.
- In the Name field, type “Inspect Element”.
- In the URL field, paste the following code:
javascript:(function () { var script = document.createElement('script'); script.src='//cdn.jsdelivr.net/npm/eruda'; document.body.appendChild(script); script.onload = function () { eruda.init() } })();
Save the bookmark. Now, when you want to inspect an element on a webpage, simply follow these steps:
Navigate to the webpage that you want to inspect.
Tap on the address bar and search for the “Inspect Element” bookmark that you saved earlier.
Tap on the bookmark to open and use the Chrome Developer Tools.
This method is convenient and easy to use, and it allows you to access the power of Chrome Developer Tools directly on your Android device.
You can read this article for more methods to use Inspect Element feature on Android Phone.
© 2022 - 2025 — McMap. All rights reserved.