如何在 chrome 信息栏中添加自定义消息?

How to add custom message in chrome infobar?

我以前认为这是不可能的,但我最近看到 Testim 有一个扩展可以做到这一点。

核心目标:在页面中添加一条不干扰现有页面DOM/CSS的消息。

Chrome/Chromium 当浏览器是来自 puppeteer 的 运行 时,在页面中注入 "The browser is being automated" 消息。但据我了解,这不是可编辑的消息。 testim 是如何做到这一点的?

这是显示确切消息的屏幕截图:

这是 Chrome 分机 attaches to a tab via the chrome.debugger API. It shows the name of the extension which is attached to the page, in your case the Testim Editor 分机时显示的消息。

正在删除信息栏

要删除该栏,您可以在 Chrome 标志 (chrome://flags) 中手动启用 "Silent Debugging" 选项,或者在启动时使用 --silent-debugger-extension-api 标志 Chrome。无法从您的扩展程序内部以编程方式禁用它。