您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Disable the Closed Updates Layer when loading WME
- // ==UserScript==
- // @name WME Disable Closed Updates
- // @namespace https://greasyfork.org/en/users/668704-phuz
- // @require https://greasyfork.org/scripts/24851-wazewrap/code/WazeWrap.js
- // @version 1.00
- // @description Disable the Closed Updates Layer when loading WME
- // @author phuz
- // @include /^https:\/\/(www|beta)\.waze\.com\/(?!user\/)(.{2,6}\/)?editor\/?.*$/
- /* global OpenLayers */
- /* global W */
- /* global WazeWrap */
- /* global $ */
- /* global I18n */
- /* global _ */
- // ==/UserScript==
- //Begin script function
- (function () {
- //Bootstrap
- function bootstrap(tries = 1) {
- if (W && W.loginManager && W.map && W.loginManager.user && W.model
- && W.model.states && W.model.states.getObjectArray().length && WazeWrap && WazeWrap.Ready) {
- init();
- } else if (tries < 1000) {
- setTimeout(function () { bootstrap(++tries); }, 200);
- }
- }
- //Initializations...
- function init() {
- setTimeout(function() {
- W.layerSwitcherController.checkboxState.set("ITEM_CLOSED_UPDATE_REQUESTS",false)
- },500);
- }
- bootstrap();
- })();