Better Property

Sort property sections on property pages

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Better Property
// @namespace    https://github.com/ChenglongMa/tampermonkey-scripts
// @version      1.0.0
// @description  Sort property sections on property pages
// @author       Chenglong Ma
// @match        *://*.property.com.au/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=property.com.au
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    function sortSections() {
        const container = document.querySelector('div[class*="PropertyPageMainContent"]');
        if (!container) return;

        const sections = [
            'Property timeline',
            'Property features',
            'Property value',
            'Government planning overlays & zones'
        ];

        const sectionElements = sections.map(label => {
            return container.querySelector(`section[aria-label="${label}"]`);
        }).filter(el => el);

        sectionElements.forEach(section => {
            container.prepend(section);
        });

        // Hide the div with data-testid="government-data-partner-banner"
        const governmentBanner = document.querySelector('div[data-testid="government-data-partner-banner"]');
        if (governmentBanner) {
            governmentBanner.style.display = 'none';
        }

        // Hide divs with class matching AdvertisementBrick*
        const advertisementBricks = document.querySelectorAll('div[class*="AdvertisementBrick"]');
        advertisementBricks.forEach(ad => {
            ad.style.display = 'none';
        });
    }

    // Run the function after the page loads
    sortSections();
})();