The actual usecase: I'm writing a resume in LaTeX, so I defintely want the reader to know that the hyperlinks are there and there are just too many people using Chrome. In my real usecase I'm using underline instead of the box.
See the following minimal example
\documentclass[]{article}
%opening
\title{}
\author{}
\usepackage{hyperref}
\begin{document}
\maketitle
\href{https://google.com}{link}
\end{document}
This correctly renders in PDF.js on Firefox and in Evince on Linux:

But Chromium doesn't render the link border at all:

What should I do so that people using Chrome/Chromium will know that the hyperlinks are there?
\usepackage[colorlinks]{hyperref}could be an option. (Plus that avoids the borders, which some people may find a nice side-effect.) – moewe Jan 30 '19 at 09:16\usepackage{hyperref}\usepackage[ocgcolorlinks]{ocgx2}prints monochrome links from within Chrome. – AlexG Jan 30 '19 at 09:23