我在桌面窗口上使用chrome版本34.0.1847.116m并尝试在chrome扩展程序中使用debugger API。
我已成功使用requiredVersion =“1.0”并使用协议版本“1.0”,但希望使用协议的“1.1”版本。
在此页面上与protocol相关,它声明:
As of Google Chrome M31, we commit to supporting the version 1.1 of the protocol.
All subsequent 1.* versions of the protocol are going to be
backwards compatible with 1.1.
当使用chrome 34尝试requiredVersion =“1.1”时,我收到以下错误:
Requested protocol version is not supported: 1.1.
我有什么遗失的吗? M31从未达到“1.1”支持?这个版本的协议是否有ETA?
答案 0 :(得分:4)
此功能的维护者。
如果您想使用协议版本“1.1”,您可以继续执行此操作。如果您请求1.0,Chromium不会隐藏特定于1.1的协议方法,我可以看到这可能会让您感到困惑。
Chromium目前不接受“1.1”作为chrome.debugger.attach
调用中的协议版本这一事实是一个错误。
感谢您指出这一点,我现在正在解决它。