Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion src/browsers.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ static char ***browsers_hash = NULL;

/* {"search string", "belongs to"} */
static const char *browsers[][2] = {
/* Game systems: most of them are based of major browsers,
/* Game systems: most of them are based off major browsers,
* thus they need to go before. */
{"Xbox One", "Game Systems"},
{"Xbox", "Game Systems"},
Expand Down Expand Up @@ -132,6 +132,9 @@ static const char *browsers[][2] = {
{"libmpv", "Others"},
{"aria2", "Others"},

/* WordPress Cron*/
{"WordPress/", "Cron"},

/* Feed-reader-as-a-service */
{"AppleNewsBot", "Feeds"},
{"Bloglines", "Feeds"},
Expand Down Expand Up @@ -243,7 +246,15 @@ static const char *browsers[][2] = {
{"MauiBot", "Crawlers"},
{"Cloud", "Crawlers"},
{"stagefright", "Crawlers"},
{"ZoteroTranslationServer", "Cralwers"}, /* Nodeja Zotero Translation Server https://github.com/zotero/translation-server */

/* HTTP Library or HTTP Server User Agents - Suggest New Category */
{"axios", "HTTP Library"}, /* NodeJS axios axios-http.com */
{"lua-resty-http", "HTTP Library"}, /* Nginx lua-resty-http module */

/* Citation Services */
{"Citoid", "Citation" }, /* MediaWiki Citoid Citation Service https://www.mediawiki.org/wiki/Citoid */
{"EasyBib", "Citation" }, /* Easybib Citation https://easybib.com */

/* Podcast fetchers */
{"Downcast", "Podcasts"},
Expand All @@ -270,13 +281,26 @@ static const char *browsers[][2] = {
{"Thunderbird", "Feeds"},
{"Winds", "Feeds"},

/* Uptime and Monitoring clients */
{"Pingdom.com", "Uptime"},
{"jetmon", "Uptime"},
{"NodeUptime", "Uptime"},
{"NewRelicPinger", "Uptime"},
{"StatusCake", "Uptime"},
{"internetVista", "Uptime"},
{"Server Density Service Monitoring v2", "Uptime"},
{"Better Uptime Bot","Uptime"},
{"Site24x7","Uptime"},
{"Uptime-Kuma","Uptime"},

/* Performance and Caching - Suggest a new category */
{"ShortPixel", "Performance"}, /* Image Optimization*/
{"WP Rocket", "Caching"}, /* Preloading Cache for WordPress Plugin */

/* Security - Suggest a new category */
{"Barracuda Sentinel", "Security"}, /* Barricuda spear fishing service */
{"ACI Site Scanner","Security"}, /* Can't confirm specific vendor */


{"Mozilla", "Others"}
};
Expand Down