在 Firefox Quantum 之前,我可以使用下面的这段代码在 firefox 插件中检测到 firefox android。
const { Cc, Ci } = require('chrome');
/**
* Is firefox android?
*
* @returns {boolean} true if there is firefox android in firefox addon
* @see https://developer.mozilla.org/en-US/Add-ons/Firefox_for_Android/Code_snippets#Supporting_both_desktop_and_mobile
*/
module.exports = () =>
Cc['@mozilla.org/xre/app-info;1']
.getService(Ci.nsIXULRuntime)
.widgetToolkit.toLowerCase() === 'android';
但是现在,这个片段被存档了。如何检测到这一点?