io.github.siddharthgoel88.useragents.impl.ElementBrowser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of feku Show documentation
Show all versions of feku Show documentation
Java utility to get User Agents from an exhaustive
list of browsers, crawlers and many other softwares.
The newest version!
package io.github.siddharthgoel88.useragents.impl;
import io.github.siddharthgoel88.useragents.UserAgent;
/**
* UserAgents from latest to oldest for ElementBrowser
*/
public class ElementBrowser extends UserAgent {
public String[] getAllUserAgentStrings() {
String [] userAgentStrings = {
"Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/533+ (KHTML, like Gecko) Element Browser 5.0"
};
return userAgentStrings;
}
}