Greasy Fork is available in English.

Livemap Leaflets Disabler

Disables Waze Livemap leaflets.

// ==UserScript==
// @name         Livemap Leaflets Disabler
// @namespace    waze-livemap-lld
// @version      1.1.1
// @description  Disables Waze Livemap leaflets.
// @author       FZ69617
// @match        https://www.waze.com/livemap*
// @match        https://www.waze.com/*/livemap*
// @grant        none
// ==/UserScript==

console.log('Livemap Leaflets Disabler started...');
var style = document.createElement('style');
style.innerHTML = '#map .leaflet-marker-icon, .leaflet-marker-shadow { display: none; }';
document.getElementById('map').appendChild(style);