1
0
mirror of https://github.com/lancedikson/bowser synced 2026-09-23 04:24:54 +00:00

feat: add LibreWolf browser detection (#578)

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: naorpeled <6171622+naorpeled@users.noreply.github.com>
This commit is contained in:
Copilot
2025-11-22 19:01:03 +02:00
committed by GitHub
parent f7d2c0693c
commit be90a00e37
3 changed files with 31 additions and 0 deletions

View File

@@ -892,6 +892,21 @@ const browsersList = [
return browser;
},
},
{
test: [/librewolf/i],
describe(ua) {
const browser = {
name: 'LibreWolf',
};
const version = Utils.getFirstMatch(/(?:librewolf)[\s/](\d+(\.?_?\d+)+)/i, ua);
if (version) {
browser.version = version;
}
return browser;
},
},
{
test: [/firefox|iceweasel|fxios/i],
describe(ua) {