I wonder if there is a filter to add custom field stats on a user profile.
ex: followers, following, my custom counter, my custom counter

at moment, i call this filter to add my counters
filter:user.account
But in this way i have to add custom css code on the client side. There is a way to add them graphically on the server side?
For example when i call this filter
filter:user.profileMenu
is not neccessary to add client css code because this function do anything
plugin.getProfileMenu = function(data, callback) {
data.links.push({
title: '[[pages:user/myprop]]',
id: 'mybutton',
route: 'mybutton',
name: 'mybutton',
visibility: {
self: true,
other: true,
moderator: true,
globalMod: true,
admin: true,
},
});
callback(null, data);
}