Wikiloc auto apply filters

Automatically applies the specified filters to the search page on WikiLoc (unless it's the favorite list)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Wikiloc auto apply filters
// @namespace    https://github.com/marcodallagatta/userscripts/tree/main/wikiloc-auto-add-filters
// @version      1.0
// @description  Automatically applies the specified filters to the search page on WikiLoc (unless it's the favorite list)
// @author       You
// @match        https://www.wikiloc.com/wikiloc/map.do?*
// @icon         https://icons.duckduckgo.com/ip2/wikiloc.com.ico
// @grant        none
// ==/UserScript==

(function() {
	'use strict';

	if (window.location.toString().includes('favoriteList')) return;

	const minLength = '3'; // in km, '0' for all
	const maxLength = '20'; // in km
	const elevMin = '200';
	const elevMax = '1250';
	const loop = '1'; // 0 not loop, 1 loop

	if (!window.location.toString().includes('uto')) { // checks if it contains max elevation
		window.location += `&act=1%2C43&lfr=${minLength}&lto=${maxLength}&ufr=${elevMin}&uto=${elevMax}&sto=3&loop=${loop}`;
	}
})();