파이어 폭스 퀀텀 (Firefox Quantum) 전에 파이어 폭스 애드온 (firefox addon)에서 firefox android를 발견 할 수 있습니다.firefox addon에서 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';
하지만이 스 니펫은 보관 처리됩니다. 이걸 어떻게 감지하나요?