mirror of
https://github.com/p-stream/p-stream.git
synced 2026-03-28 19:28:44 +00:00
add see source code button to extension onboarding
This commit is contained in:
parent
fd420cfebc
commit
3c960d4b55
1 changed files with 21 additions and 0 deletions
|
|
@ -140,6 +140,13 @@ function ChromeExtensionPage(props: ExtensionPageProps) {
|
|||
) : null}
|
||||
|
||||
<ExtensionStatus status={props.status} loading={props.loading} />
|
||||
<Link
|
||||
href="https://github.com/sussy-code/browser-ext"
|
||||
target="_blank"
|
||||
className="pt-4 !text-type-dimmed"
|
||||
>
|
||||
See extension source code
|
||||
</Link>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
|
@ -162,6 +169,13 @@ function FirefoxExtensionPage(props: ExtensionPageProps) {
|
|||
) : null}
|
||||
|
||||
<ExtensionStatus status={props.status} loading={props.loading} showHelp />
|
||||
<Link
|
||||
href="https://github.com/sussy-code/browser-ext"
|
||||
target="_blank"
|
||||
className="pt-4 !text-type-dimmed"
|
||||
>
|
||||
See extension source code
|
||||
</Link>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
|
@ -211,6 +225,13 @@ function UnknownExtensionPage(props: ExtensionPageProps) {
|
|||
</div>
|
||||
|
||||
<ExtensionStatus status={props.status} loading={props.loading} showHelp />
|
||||
<Link
|
||||
href="https://github.com/sussy-code/browser-ext"
|
||||
target="_blank"
|
||||
className="pt-4 !text-type-dimmed"
|
||||
>
|
||||
See extension source code
|
||||
</Link>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue