ZeeFilter+

A way to clear capture and deploy page filters

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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
    );
} )();