I am a big fan of hyperref. It allows (among other things) to go quickly to the bibliography (at the end of a document) by clicking to the name of the author in the body of the text. So, I have plenty of links which look like that:

If I click on 2000, I could see what book is actually cited (in the bibliography). I do this a lot but I am always facing a issue for continuing reading. Indeed, I have to find the exact page where the citation was by hand...
I'm wondering if there is a way to add a link (anchor) inside the bibliography in order to send back to the text body.
Of course, the main (and huge) problem is to know where you were when you clicked on the citation and where to see you back. I cannot think a way to achieve this but I'm asking this question to collect idea on this subject.
MWE:
\begin{filecontents}{biblio.bib}
@Book{author00:_title,
author = {Author},
title = {Title},
publisher = {Publisher},
year = 2000}
\end{filecontents}
\documentclass[12pt,twoside,a4paper]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[english,french]{babel}
\usepackage[autostyle=true]{csquotes}
\usepackage[style=authoryear-comp,
hyperref,]{biblatex}
\addbibresource{biblio}
\usepackage[colorlinks]{hyperref}
\begin{document}
\cite{author00:_title}
\printbibliography
\end{document}

backreftobiblatexat loading time. – moewe Apr 08 '15 at 11:57authorindextool to enhance my document. This tool adds a list of pages, where a specific reference is cited in the document, at the very end of a bibliography item. Still, if you want to use it and a reference is cited multiply times, you shall have a general idea which page you were reading before clicking a hyperlink. – Malipivo Apr 08 '15 at 13:08\usebibresourceI was using\bibliographyand change that, making a mistake, before posting to avoid annoying remarks about obsoleteness. But I'm sure you know also that you could have corrected my mistake instead of just pointing it... :-) – ppr Apr 08 '15 at 15:04Ctrl-O(same as Vim). – PlasmaBinturong Jun 30 '20 at 17:38