// ==UserScript== // @name 监督员轨迹简化 // @namespace http://tampermonkey.net/ // @version 1.0.0 // @description 简化轨迹显示,去除案件上报点位标记 // @author You // @match http://tampermonkey.net/index.php?version=4.4&ext=dhdg&updated=true // @grant none // @include http://10.1.235.36:6888/* // @downloadURL none // ==/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 += '#multiPostionGraphicSimple_layer {display:none!important;}'; addGlobalStyle(cssText); })();