Should we need bl_info array category?

eg: Some addon can working for Object and Mesh both. But there’s only one category.

Should we need bl_info array category?

bl_info = {
‘category’ : ‘Object’,
}

–>>

bl_info = {
‘category’ : (‘Object’, ‘Mesh’),
}

Is that possible implement in others way?

I am curious, in what situation would an AddOn work for both cases? (i.e. Object and Mesh)

A mesh could be seen as a special type of Object, so Object seems like a good choice. But if it’s primarily targeted at Mesh stuff, pick Mesh.

In many users eyes. There’s no object. mesh is a mesh and light is a light …

But there’re too many mesh-addon polling object mode and in object category.

So. I want follow them. Let function auto switch mode and easy be found in both categorys.

Yes that’s not a develop problem. That’s a developer problem.
Let their confusion or give their a compatibility?