Collectibles Map Markers Mod - Request

Is there a mod that shows every single collectibles you can collect in GTA V Singleplayer? I saw something similar in Zchaos mod but I don’t want the chaos part, so is there a way to get the collectibles on the map part from the Zchaos Mod or is there a mod that shows the Collectibles on the map along with an icon representing the collectibles like for example, Letter Scraps would show as like letters, Spaceship parts as like a ufo and even Stunt jumps would be like a car or something, something similar like the image below

I don’t think so but you can add blips yourself with:

local blips = {
  {name = "LS Underground", sprite = 777, colour = 1, pos = vector3(951.215, -1698.114, 29.871)},
  {name = "Strip Club", sprite = 121, colour = 7, pos = vector3(128.863, -1298.634, 29.232)}
}

Citizen.CreateThread(
  function()
      for _, blip in pairs(blips) do
          blip.blip = AddBlipForCoord(blip.pos.x, blip.pos.y, blip.pos.z)
          SetBlipSprite(blip.blip, blip.sprite)
          SetBlipDisplay(blip.blip, 6)
          SetBlipColour(blip.blip, blip.colour)
          SetBlipScale(blip.blip, 0.5)
          SetBlipAsShortRange(blip.blip, true)
          BeginTextCommandSetBlipName("STRING")
          AddTextComponentString(blip.name)
          EndTextCommandSetBlipName(blip.blip)
      end
  end
)

See more: Blips - Cfx.re Docs (fivem.net)