Order All Pages table in administration

There is no plugin for that. But you can achieve this by using filters. Add following code to you theme’s functions.php file:

/**
 * Order Admin Page List by Date by Default
 */

add_filter('pre_get_posts', 'my_set_page_order_in_admin' );
function my_set_page_order_in_admin( $wp_query ) {
    global $pagenow;
    if ( is_admin() && $_GET['post_type'] == 'page' && 'edit.php' == $pagenow && !isset($_GET['orderby'])) {
        $wp_query->set( 'orderby', 'date' );
        $wp_query->set( 'order', 'desc' );
    }
}