如何在内容脚本的 chrome 扩展中设置徽章文本?

How to set the badge text in a chrome extension from the content script?

可以从后台脚本设置徽章文本。我想知道是否可以从内容脚本中做到这一点。

不,它是 not possible. You need to message 为您做的背景页面。

However, content scripts have some limitations. They cannot:

Use chrome.* APIs, with the exception of:

  • extension ( getURL , inIncognitoContext , lastError , onRequest , sendRequest )
  • i18n
  • runtime ( connect , getManifest , getURL , id , onConnect , onMessage , sendMessage )
  • storage

如果您还没有后台页面并且担心可能的性能影响,请查看 Event pages (manifest V2) or Event pages (manifest V3)