Show Deleted Answers at head for StackExchange

Swap two divs inside a parent

Tính đến 12-11-2023. Xem phiên bản mới nhất.

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

Bạn sẽ cần cài đặt một tiện ích mở rộng như Tampermonkey hoặc Violentmonkey để cài đặt kịch bản này.

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.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

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.

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

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

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

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

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

// ==UserScript==
// @name         Show Deleted Answers at head for StackExchange
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Swap two divs inside a parent
// @author       aspen138
// @match        https://*.stackexchange.com/users/*/*?tab=answers*
// @match        https://*.stackexchange.com/users/*/*?tab=questions*
// @grant        none
// @license     MIT
// ==/UserScript==

(function() {
    'use strict';

    // Function to swap divs
    function swapDivs() {
        let parentDiv = document.querySelector('.ba.bc-black-225.bar-md');
        let firstDiv = document.querySelector('#js-post-summaries');
        let secondDiv = document.querySelector('.bt.bc-black-200.p16');

        if (parentDiv && firstDiv && secondDiv) {
            let firstDivClone = firstDiv.cloneNode(true);
            let secondDivClone = secondDiv.cloneNode(true);
            parentDiv.removeChild(firstDiv);
            parentDiv.removeChild(secondDiv);
            parentDiv.appendChild(secondDivClone);
            parentDiv.appendChild(firstDivClone);
        }
    }

    // Swap divs on page load
    window.addEventListener('load', swapDivs, false);

    let tabs = document.querySelectorAll('.js-user-tab-sort');
    tabs.forEach(tab => {
        tab.addEventListener('click', () => {
            setTimeout(function(){ location.reload(); }, 0.3);
        }, false);
    });

})();