I am developing a webpage using "geolocation" and for that I need to allow access and deny access many times a day just to see how it works with my code. Here is just a code example.
<script>
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(showPosition);
/* navigator.geolocation.getCurrentPosition(showPosition, showError);*/
} else {
alert("Geolocation is not supported by this browser.")
}
</script>
All of a sudden It always denies tracing my location and when I click the trace icon it says
"The following sites have been blocked from tracking your location on this page <my page name>"
And below it says
"Settings will be cleared on next reload"
I've tried to reload the page, I've tried to restart Google Chrome, I've entered in the location settings but the block list is empty so I can't find my page there either.
So what can I do? I can't continue to develop my page as long as my page is permanently blocked.