You can’t override existing methods with extension methods, but you could use type reification with a differently named method to solve the issue, something like
inline fun <reified T> SomeObject.methodTwo()
(my syntax might not be exactly correct, doing this from memory)