删除洛谷个人主页图片

删除洛谷个人主页图片。

// ==UserScript==
// @name         删除洛谷个人主页图片
// @namespace    http://tampermonkey.net/
// @version      remove.intro
// @description  删除洛谷个人主页图片。
// @match        https://www.luogu.com.cn/*
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    setInterval(() => {
        const currentUser = window.location.pathname.split('/').pop();
        if (currentUser == '682739') { // 请自定义
            const introductionElement = document.querySelector('div.introduction.marked[data-v-e5ad98f0][data-v-fe28b16c][data-v-f9624136]');
            if (introductionElement) {
                const images = introductionElement.querySelectorAll('img');
                images.forEach(img => img.remove());
            }
        }
    }, 100);
})();