12345678910111213141516171819202122232425262728293031323334353637383940414243function get_navigator_name() {const agent = navigator.userAgent;//QQBrowserif (agent.indexOf("QQBrowser") !== -1) {return "QQBrowser";}//Midoriif (agent.indexOf("Midori") !== -1) {return "Midori"}//Basiliskif (agent.indexOf("Basilisk") !== -1) {return "Basilisk";}//Iridiumif (agent.indexOf("Iridium") !== -1) {return "Iridium";}//Vivaldiif (agent.indexOf("Vivaldi") !== -1) {return "Vivaldi"}//Waterfoxif (agent.indexOf("Waterfox") !== -1) {return "Waterfox"}//IceDragonif (agent.indexOf("IceDragon") !== -1) {return "IceDragon"}//Slimif (agent.indexOf("Slim") !== -1) {return "Slim"}//SeaMonkeyif (agent.indexOf("SeaMonkey") !== -1) {return "SeaMonkey"}//RockMeltif (agent.indexOf("RockMelt") !== -1) {return "RockMelt"}
更新时间:2020-06-10 00:35:26
使用方法:
document.write(get_navigator_name()); //浏览器名字 document.write("<br />"); document.write(get_app_version()); //版本 document.write(get_browser_plugins()); //浏览器插件大全