ZeeFilter+

A way to clear capture and deploy page filters

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey to install this script.

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

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.

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

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         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
    );
} )();