ZeeFilter+

A way to clear capture and deploy page filters

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         ZeeFilter+
// @namespace    none
// @version      2019.04.08.2154
// @description  A way to clear capture and deploy page filters
// @author       techncial13
// @supportURL   https://Discord.me/TheShoeStore
// @match        https://www.munzee.com/m/*/captures/*
// @match        https://www.munzee.com/m/*/deploys/*
// @match        https://www.munzee.com/m/*/undeploys/*
// @grant        none
// ==/UserScript==

( function() {
    'use strict';
    let strSubPage = document.location.pathname.split( '/' );
    $( 'div.types-icons.row.row-centered > p:last' )
        .before(
        '<div class="col-lg-1 col-xs-4 col-sm-1 col-md-1 col-centered">&nbsp;</div>' +// empty space
        '<div class="col-lg-1 col-xs-4 col-sm-1 col-md-1 col-centered">' +// start reset
        '<a href="/m/' + strSubPage[ 2 ] + '/' + strSubPage[ 3 ] + '/">' +// start reset link
        '<img class="type-0" src="https://gardenpainter.ide.sk/delete_munzee.png"></a></div>'// reset link image & close all
    );
} )();