Extensions are a way to add functionality to existing classes. As such, they contain methods, getters, and setters, in the same way classes do.
Therefore, it makes sense to adopt the same naming convention as for classes, which is PascalCase (a.k.a. UpperCamelCase).
This makes the code more homogeneous and doesn’t mislead developers into thinking that the extension is a variable or a function.