ODT added a new file:
QuoteDisplay MoreThis "mod" uses an open-source extension Resource Override to swap markers.png Mapgenie.io uses for it's Tarkov maps for a custom one hosted on my github repository. Works with any Chrome-based browser and Firefox!
More examples below:
Installation:
1) Install Resource Override from Chrome webstore or Firefox page (or manually from Kyle Paulsen's GitHub).
2) Download the mod release archive and unpack it.
3) Inside you will see resource_override_rules.json files.
4) In Chrome, right to the address bar, click on puzzle icon, that opens extensions menu, then click on Resource Override to open its settings.
5) On the right, you will see Options button, click on it, and after that Load Rules and target my resource_override_rules.json file.
Notes:
On my github page I left all the .psd files I used to create this icon pack, feel free to experiment with them yourself.
Code:
Here is overwrite rules file itself:
{
"v": 1,
"data": [
{
"id": "d2",
"matchUrl": "*mapgenie.io/tarkov/*",
"rules": [
{
"type": "normalOverride",
"match": "https://cdn.mapgenie.io/images…rkov/markers.png?MTkyMDMw",
"replace": "https://raw.githubusercontent.…cons/main/res/markers.png",
"on": true
},
{
"type": "normalOverride",
"match": "https://cdn.mapgenie.io/images…v/[email protected]?MTkyMDMw",
"replace": "https://raw.githubusercontent.…main/res/markers%402x.png",
"on": true
}
],
"on": true
}
]
}