您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Entfernt das Gendern auf mydealz und weitere unnötige Bereiche
// ==UserScript== // @name MyDealz AntiGender // @namespace http://tampermonkey.net/ // @version 0.1 // @description Entfernt das Gendern auf mydealz und weitere unnötige Bereiche // @author You // @include *://www.mydealz.de/deals/* // @match *://www.mydealz.de/* // @require http://code.jquery.com/jquery-3.4.1.min.js // @grant none // ==/UserScript== setInterval(modify, 200); function modify() { // Im Deal // Autor statt Autor*in $('.comment-padding .textBadge').text('Autor') // Experten Banner $('.js-expert-banner').remove() // Auch Interessant if($('.card.card--type-horizontal.listLayout-scrollBox.aGrid').length > 1) $('.card.card--type-horizontal.listLayout-scrollBox.aGrid').eq(0).remove() // rechte Navbar Top Handläer, Top Gruppen etc. $('.hide--toW4.listLayout-side.space--b-2').remove() // Blog-View $('.cept-banner').remove() }