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