您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
简化轨迹显示,去除无效信息。扣咪日眼的。
// ==UserScript== // @name 监督员车辆轨迹简化 // @namespace http://tampermonkey.net/ // @version 1.0.3 // @description 简化轨迹显示,去除无效信息。扣咪日眼的。 // @author You // @match http://tampermonkey.net/index.php?version=4.4&ext=dhdg&updated=true // @grant none // @include http://223.223.180.206:6399/* // ==/UserScript== (function() { 'use strict'; function addGlobalStyle(css) { var head, style; head = document.getElementsByTagName('head')[0]; if (!head) { return; } style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = css; head.appendChild(style); } var cssText = ''; cssText += '.amap-icon img {display:none!important;}'; cssText += '.amap-layer {opacity:0!important;}'; cssText += '#alarmWindow {display:none!important;}'; var someReg = new RegExp('t_6','g'); var cssText2 = cssText.replace(someReg,'t_19'); addGlobalStyle(cssText); })();