WordPress plugin installation

Add this code and replace yourpagename with the your page slug on which u want this filter to execute

function my_name( $content ) {
    global $post;
    if ( $post->post_name == 'yourpagename' ) {          
        return $content;
    } 
}
add_filter( 'the_content', 'my_name' );