Skip to content

Commit

Permalink
Announce support for hCaptcha.
Browse files Browse the repository at this point in the history
  • Loading branch information
armfazh committed Jun 13, 2022
1 parent 2843aa5 commit c3c821c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,3 +140,17 @@ Depending on your browser settings, the local storage of your browser
may be cleared when it is restarted. Privacy Pass stores passes in local
storage and so these will also be cleared. This behavior may also be
observed if you clear out the cache of your browser.

## Known Issues

### Extensions that modify user-agent or headers.

There is a [conflict resolution|https://developer.chrome.com/docs/extensions/reference/webRequest/#conflict-resolution] happening when more than one extension tries
to modify the headers of a request. According to documentation,
the more recent installed extension is the one that can update
headers, while others will fail.

### hCaptcha support.

As of version 3.x.x, support for hCaptcha tokens is paused. Only
Cloudflare CAPTCHAs are supported by this extension.
2 changes: 0 additions & 2 deletions src/popup/components/App/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { Container } from '@popup/components/Container';
import { ClearButton } from '@popup/components/ClearButton';
import { CloudflareButton } from '@popup/components/CloudflareButton';
import { HcaptchaButton } from '@popup/components/HcaptchaButton';
import { GithubButton } from '@popup/components/GithubButton';
import { Header } from '@popup/components/Header';
import React from 'react';
Expand All @@ -13,7 +12,6 @@ export function App(): JSX.Element {
<Header />
<Container>
<CloudflareButton />
<HcaptchaButton />
<ClearButton />
<GithubButton />
</Container>
Expand Down

0 comments on commit c3c821c

Please sign in to comment.