io.github.siddharthgoel88.useragents.impl.Conkeror 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 Conkeror
*/
public class Conkeror extends UserAgent {
public String[] getAllUserAgentStrings() {
String [] userAgentStrings = {
"Mozilla/5.0 (X11; Linux x86_64; rv:10.0.11) Gecko/20100101 conkeror/1.0pre (Debian-1.0~~pre+git120527-1)",
"Mozilla/5.0 (Windows NT 6.1; rv:16.0) Gecko/20121010 conkeror/1.0pre",
"Mozilla/5.0 (X11; Linux x86_64; rv:6.0.1) Gecko/20110831 conkeror/0.9.3",
"Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.16) Gecko/20101209 Conkeror/0.9.2 (Debian-0.9.2+git100804-1)",
"Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.15) Gecko/20101028 Conkeror/0.9.2 (Debian-0.9.2+git100804-1)",
"Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.14) Gecko/20101020 Conkeror/0.9.2 (Debian-0.9.2+git100804-1)"
};
return userAgentStrings;
}
}