I would like to know how the author in the citation label can be part of the hyperlink as well. I changed the style of the reference by hand. The following MWE shows the package I used.
\begin{filecontents}{\jobname.bib}
@book{Labov1972,
Address = {Philadelphia},
Author = {William Labov},
Publisher = {University of Pennsylvania Press},
Title = {Sociolinguistic Patterns},
Year = {1972}}
@book{Chomsky1957,
Address = {The Hague},
Author = {Noam Chomsky},
Publisher = {Mouton},
Title = {Syntactic Structures},
Year = {1957}}
\end{filecontents}
\documentclass[]{scrreprt}
\usepackage{hyperref}
\usepackage[ngerman]{babel}
%----------------------------------------------------------------------
% Bibliothek
%----------------------------------------------------------------------
% style einstellen
\usepackage[
backend=biber,
style=ext-authoryear,
backref=true,
doi=false,
isbn=false,
url=false,
articlein=false,
dashed=false,
introcite=plain,
labelalpha=true
]{biblatex}
%% Style Schriftum direkt aus dem Manual kopiert
\DeclareFieldFormat{bbx@introcite}{\mkbibbrackets{#1}}
\DeclareDelimFormat[bbx@introcite]{nameyeardelim}{\addcomma\space}
\UndeclareInnerCiteDelims{bbx@introcite}
\renewcommand*{\introcitepunct}{\quad}
\setlength\bibitemsep{1.5\itemsep}
% Bei mehreren Autoren et al.
\DefineBibliographyStrings{ngerman}{
andothers = {{et\,al\adddot}},
}
% Keine Anführungszeichen beim Titel
\DeclareFieldFormat[article]{title}{{#1}}
%% Style des Verweises im Text
% Eckige Klammern um Autor Jahr
\DeclareOuterCiteDelims{cite}{[}{]}
% [Autor Jahr] -> [Autor, Jahr]
\renewcommand*{\nameyeardelim}{\addcomma\space}
\DefineBibliographyStrings{german}{
backrefpage={zitiert auf Seite:},
backrefpages={zitiert auf Seiten:}
}
%% Laden der Bibliothek
\addbibresource{\jobname.bib}
%----------------------------------------------------------------------
% Ende Bibliothek
%----------------------------------------------------------------------
\begin{document}
Text text \cite{Chomsky1957}
\printbibliography
\end{document}
In the Screenshot you can see that only the year is included in the link.

