移除高德地图规划路线时的色弱
// ==UserScript==
// @name 移除高德地图色弱
// @namespace https://greasyfork.org/zh-CN/users/314234
// @version 1.1.0
// @description 移除高德地图规划路线时的色弱
// @author Yong_Hu_Ming
// @license MIT License
// @match *://www.amap.com/*
// @match *://amap.com/*
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
GM_addStyle(`.amap-layer.saturate-filter {
filter: unset !important;
}`)
})();