问题描述
我正在为Chrome和Firefox使用chrome
命名空间,但想知道哪个浏览器正在运行Web扩展.
I am using the chrome
namespace for both Chrome and Firefox, but would like to know which browser is running the web extension.
推荐答案
-
检查Firefox中不存在的
chrome.app
:const isFirefox = !chrome.app;
-
检查Chrome中不存在的
browser
:const isFirefox = window.browser && browser.runtime;
(额外的检查是避免在具有
id="browser"
元素的页面上创建误报,该元素在window
对象上为此元素创建命名属性)(the additional check is to avoid false positives on pages that have an element with
id="browser"
that creates a named property onwindow
object for this element)使用异步 browser.runtime.getBrowserInfo .
P.S.切换到设备模式或通过Firefox中的
about:config
选项时,可能会在devtools中的调试过程中更改navigator.userAgent
,因此它是不可靠的来源.P.S.
navigator.userAgent
may be changed during debugging in devtools when switching to device mode or viaabout:config
option in Firefox so it's an unreliable source.这篇关于如何通过Web扩展弹出窗口JavaScript知道浏览器是Chrome还是Firefox?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!