[Tex/LaTex] No bibtex style file for clickable links without displaying the url explicitly

bibtexhyperrefurls

Having the same problem as bibtex – how to have a web link without the url (ideally to have a link on the number), I am wondering:

Is there really no freely accessible bibtex style (so as I do not have to edit neither bibliography items nor my bibtex style file) which would use the url field to make the whole bibliography item [change colour and become] clickable without explicitly displaying the url?

This is not a solution for me, as I do not want to add any additional text to my references.

The way Annals of Physics does it is what I am looking for:
enter image description here

If such a bibtex style does not exist, what is the simplest solution to achieve this result?

UPDATE:
To provide a code to work with, let us start with the example:

% pdflatex, bibtex, pdflatex, pdflatex
\begin{filecontents}{mybib.bib}
@book{pascal,
  title={Pensees},
  author={Pascal, B. and Krailsheimer, A.},
  series={Penguin classics},
  url={http://books.google.cz/books?id=jakUTllF9G0C},
  year={1995},
  publisher={Penguin Books Limited}
}
\end{filecontents}

\documentclass{article}

\usepackage[backend=bibtex]{biblatex}
\usepackage{hyperref}

\bibliography{mybib}

\begin{document}
Give it a try: \cite{pascal}
\printbibliography
\end{document}

Giving:enter image description here

UPDATE 2:
Using biblatex (and the same bibliography entry), we get:

      % pdflatex, biber, pdflatex, pdflatex
\documentclass{article}

\usepackage{biblatex}
\usepackage{hyperref}
\addbibresource{mybib.bib}

\begin{document}
Give it a try: \cite{pascal}
\printbibliography
\end{document}

enter image description here

So the question is:
How to make the url disappear and make the whole (or part) of the entry a link to the given url?

Best Answer

So, it really seems that there is no bibtex style with an easy implementation of the desired feature. Thanks to cfr I discovered biblatex/biber and the solution I like is https://tex.stackexchange.com/a/48409/66983 from question biblatex: make title hyperlink to DOIs, URL or ISBN. It has even more features than I wanted.