This plugin is outdated and might not be supported anymore
Remove jQuery from Theme

Remove jQuery from Theme

Details
View on WordPress

Removes jQuery from your frontend theme if no administrator is logged-in. jQuery will continue to work in you backend and when the admin toolbar is visible. Plugins which depend on jQuery will not be loaded either.

This plugin does nothing more but this:

function init_without_jquery() {
    if (!is_admin() AND !is_admin_bar_showing()) {
        wp_deregister_script('jquery');
        wp_register_script('jquery', false);
    }
}

add_action('init', 'init_without_jquery');

Details

Plugin code:
remove-jquery
Plugin version:
1.0
Outdated:
Yes
WP version:
5.0 or higher
PHP version:
or higher
Test up to WP version:
5.6.14
Total installations:
200
Last updated:
2021-03-09
Rating:
Times rated:
1
jquery