即使按照https://developer.chrome.com/docs/devtools/remote-debugging/上列出的步骤操作,我还是无法在我的三星Galaxy S4上使用DevTools Devices功能

我的设备有Chrome v32和Chrome Beta v33,而我的个人电脑有Chrome v33和Chrome Canary v35。

我的设备上已开启USB调试,并且已安装设备驱动程序。我从未从上面的链接中得到步骤3中概述的提示,以批准RSA密钥指纹,但设备确实连接到我的PC以允许媒体传输。我甚至根据上面的链接撤销了所有USB调试授权。

我的电脑上没有任何额外安装的东西用于Android开发,这可能是问题所在。我希望利用这个功能从设备的角度来检查网页。


当前回答

我知道这是一个老问题,但我的答案为我解决了这个问题。我浏览了我能找到的所有文章,尝试了所有的方法。它不适合我在mac或PC上使用。

解决方法:使用另一根USB连接线。

我一定是抓到了一根不支持文件传输的劣质电缆。我使用了不同的USB电缆,并立即提示ptp模式和远程调试授权。

其他回答

执行adb命令行。像这样

adb devices

如果您使用“MTP模式”进行USB电脑连接。 更改为“PTP模式”或“读卡器模式”。

我也有同样的问题,它对我来说很好。

上面提到的答案对我都没用。然而,对我有用的是端口转发。步骤如下:

Ensure you have adb installed (steps here for windowd, mac, ubuntu) Ensure you have chrome running on your mobile device On your PC, run the following from command line: adb forward tcp:9222 localabstract:chrome_devtools_remote On running the above command, accept the authorization on your mobile phone. Below is the kind of output I see on my laptop: $:/> adb forward tcp:9222 localabstract:chrome_devtools_remote * daemon not running. starting it now on port 5037 * * daemon started successfully * Now open your chrome and enter 'localhost:9222' and you shall see the active tab to inspect.

下面是该方法的源代码

如果在华为或荣耀手机上运行,请确保在您的电脑上安装并运行HiSuite。USB调试只有在HiSuite打开时才能工作。

我要做的是禁用“发现网络目标”在chrome://inspect/#设备。

这是唯一解决了它在我的设置(chrome版本78.0.3904.97 deepinOS/debian)。