how to display my WordPress plugin on a chosen page?

You need to use functions like add_action() or add_filter().

Suppose you want to add a plugin’s functionality after the content of each blog post, use:

add_action( 'the_content', 'plugins_function_name' );

error code: 523