// ==UserScript== // @name Complete Explorer Mode // @namespace http://tampermonkey.net/ // @version 2.0 // @description Improve your list and map in explorer mode with old official maps (Vietnam and Türkiye (duplicate)). // @license MIT // @author Ice-Dodo // @match *://*.geoguessr.com/* // @icon https://www.google.com/s2/favicons?domain=geoguessr.com // @grant GM_xmlhttpRequest // @downloadURL none // ==/UserScript== (function() { const collectors = [ { "name": "Vietnam", "id": "vietnam", "pathId": "country-vn", "flag": "https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Flag_of_Vietnam.svg/800px-Flag_of_Vietnam.svg.png?20170626140925" }, { "name": "Türkiye (duplicate)", "id": "turkiye", "pathId": "country-tr", "flag": "data:image/svg+xml;charset=utf-8,%3Csvg%20width%3D%2221%22%20height%3D%2215%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cdefs%3E%3ClinearGradient%20x1%3D%2250%25%22%20y1%3D%220%25%22%20x2%3D%2250%25%22%20y2%3D%22100%25%22%20id%3D%22a%22%3E%3Cstop%20stop-color%3D%22%23FFF%22%20offset%3D%220%25%22%2F%3E%3Cstop%20stop-color%3D%22%23F0F0F0%22%20offset%3D%22100%25%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20x1%3D%2250%25%22%20y1%3D%220%25%22%20x2%3D%2250%25%22%20y2%3D%22100%25%22%20id%3D%22b%22%3E%3Cstop%20stop-color%3D%22%23E92434%22%20offset%3D%220%25%22%2F%3E%3Cstop%20stop-color%3D%22%23E11324%22%20offset%3D%22100%25%22%2F%3E%3C%2FlinearGradient%3E%3C%2Fdefs%3E%3Cg%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%3Cpath%20fill%3D%22url(%23a)%22%20d%3D%22M0%200h21v15H0z%22%2F%3E%3Cpath%20fill%3D%22url(%23b)%22%20d%3D%22M0%200h21v15H0z%22%2F%3E%3Cpath%20d%3D%22M13.052%204.737A3.907%203.907%200%200%200%2010.75%204C8.679%204%207%205.567%207%207.5S8.679%2011%2010.75%2011c.868%200%201.667-.275%202.302-.737a4.5%204.5%200%201%201%200-5.526Zm1.214%203.34-.919%201.113.063-1.442-1.343-.53%201.39-.386.09-1.441.796%201.204%201.398-.361-.898%201.13.775%201.217-1.352-.505Z%22%20fill%3D%22url(%23a)%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E" } ]; const medals = { "Bronze": "https://www.geoguessr.com/_next/static/media/medal-bronze.aab227dc.svg", "Silver": "https://www.geoguessr.com/_next/static/media/medal-silver.f0eb62e1.svg", "Gold": "https://www.geoguessr.com/_next/static/media/medal-gold.ffccc427.svg", "Platinum": "https://www.geoguessr.com/_next/static/media/medal-platinum.37cd72ca.svg" } const colors = { "Bronze": "#A66C69", "Silver": "#C0C0BF", "Gold": "#EFFE00", "Platinum": "#EFFE00" } const colorsSupp = { "Bronze": "#ee9055", "Silver": "#999", "Gold": "var(--color-yellow-50)", "Platinum": "var(--color-yellow-50)", "None": "#e5dcce" } const svgContent = `