SAV.com domain list sort by date

This is a UserScript. sav.com is one of the cheapest domain registrar. But the interface is awful. You cannot sort domains by expiration date. My script lists domains on 1 page. When you click on Expiration column, it sorts domains by date.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==UserScript==
// @name        SAV.com domain list sort by date
// @namespace   https://github.com/borayeris/sav.com-domain-list-sort-by-date
// @match       *://*.sav.com/*/domain_list
// @grant       none
// @version     1.0
// @author      Boray Eris
// @description This is a UserScript. sav.com is one of the cheapest domain registrar. But the interface is awful. You cannot sort domains by expiration date. My script lists domains on 1 page. When you click on Expiration column, it sorts domains by date.
// 12/26/2020, 11:38:01 PM
// ==/UserScript==
$(function(){
    let $domainDetails = $('.domain-details'); // GET TABLE OF DOMAIN LIST

    /**
     * CHECK ALL PAGES
     */
    $('.pagination .auction-pagination-link:not([rel="next"])').each(function(){
        let pageNum = $(this).text();
        console.log( '//www.sav.com/domains/domain_list/'+ pageNum );
        $.get( '//www.sav.com/domains/domain_list/'+ pageNum, function( data ) {
            $domainDetails.find('tbody').append( $(data).find( '.domain-details tbody tr' ) );
        })
        .done(function(){
            $('.pagination').hide();

            /**
             * ATTACH UNIX TIME TO LINE (TD)
             */

            //console.log( $domainDetails.find('tbody tr') );
            $domainDetails.find('tbody tr td:nth-child(2)').each(function(){

                let unixTime = Date.parse( $(this).text() ) / 1000;
                $(this).parent().attr({ 'data-unixtime': unixTime });
                //console.log( unixTime );

            });

            /**
             * SORT BY CLICK
             */
            $domainDetails.find('tbody tr').on( 'click', 'td:nth-child(2)', function(){

                let $lines = $domainDetails.find('tbody tr').sort( (a, b) => { return $(a).attr('data-unixtime') - $(b).attr('data-unixtime'); } );
                $domainDetails.find('tbody').html( $lines );


            });


        });

    });

});