Hide Loc

Hides the loc (for blind team duels)

Pada tanggal 18 April 2025. Lihat %(latest_version_link).

// ==UserScript==
// @name         Hide Loc
// @namespace    vinz3210.gg
// @version      2025-04-19-2
// @license      MIT 
// @description  Hides the loc (for blind team duels)
// @author       vinz3210
// @match        https://www.geoguessr.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=geoguessr.com
// @grant        GM_addStyle
// ==/UserScript==

GM_addStyle(`
  [class^="mapsConsumerUiSceneCoreScene__canvas"]{
    display: none !important;
  }
`);