1
0
mirror of https://github.com/bitwarden/help synced 2025-12-16 00:03:41 +00:00
Files
help/_articles/features/blacklisting-uris.md
fred_the_tech_writer 906e2ca0dd Promote to Master (#748)
* initial commit

* adding quotes for the array error

* Create Gemfile

* Create Gemfile.lock

* add .nvmrc and .node-version

* removed /article from URL

* update links to work with netlify

* more fixed links

* link fixes

* update bad links

* Update netlify.toml

toml test for redirects

* article redirect

* link fixes

* Update index.html

* Update netlify.toml

* Update _config.yml

* Update netlify.toml

* Update netlify.toml

* Update netlify.toml

* Update netlify.toml

* Update netlify.toml

* add article back into URL for launch

* Update netlify.toml

* Update netlify.toml

* add order to categories front matter

* Update netlify.toml

* update

* sidemenu update

* Revert "sidemenu update"

This reverts commit 5441c3d35c.

* update order prop

* Navbar updates per Gary and compiler warnings

* font/style tweaks

* Update sidebar.html

* Stage Release Documentation (#739)

* initial drafts

* rewrite Custom Fields article to prioritize new context-menu option & better organize ancillary information

* edit

* edit

* Custom Field Context Menu & CAPTCHA item in release notes

* SSO relink event

* update rn

* small edits

* improve release notes titles

* fix side menu

* Edits courtest of mportune!

* update order

* link fixes

* link cleanup

* image updates and a link

* fix trailing slash

Co-authored-by: DanHillesheim <79476558+DanHillesheim@users.noreply.github.com>
2021-09-21 13:21:11 -04:00

43 lines
2.1 KiB
Markdown

---
layout: article
title: Blacklisting URIs
categories: [auto-fill]
featured: false
popular: false
order: "06"
tags: [android, autofill, auto-fill]
---
{% callout info %}
Blacklisting URIs is currently only available for Bitwarden Mobile on **Android 8.0 (Oreo)** or higher.
{% endcallout %}
Auto-fill relies on the attribution of URIs to Login items. If you're unfamiliar with using URIs, brush up using our [Using URIs]({{site.baseurl}}/article/uri-match-detection/) article. **Android** users can explicitly blacklist URIs to prevent Bitwarden from offering them for auto-fill. To specify URIs to blacklist:
1. In the Bitwarden Android app, open the {% icon fa-cog %} **Settings** tab.
2. Tap **Options**.
3. Scroll down to the bottom of the Options screen and enter URIs in the **Blacklisted URIs** input:
{% image features/auto-fill-android/blacklist-uris.png %}
Blacklisted URIs should be specified in a **comma-separated list**, for example:
```
https://twitter.com,androidapp://com.twitter.android,https://facebook.com
```
4. There's no **Save** button for this screen, so simply pressing the back button or returning to the previous screen will save your specification.
## Android App URIs
For websites accessed via a web browser, a proper URI will be the `https://..` address of the Login page, for example `https://twitter.com` or `https://twitter.com/login`.
**For Android Apps**, the [URI scheme]({{site.baseurl}}/article/uri-match-detection/#uri-schemes) always starts with `androidapp://` and is usually a bit different from a typical web browser URI. For example,
- The Twitter Android app has the URI `androidapp://com.twitter.android`
- The Reddit Android app has the URI `androidapp://com.reddit.frontpage`
- The Bitwarden Android app has the URI `androidapp://com.x8bit.bitwarden`
{% callout success %}
An easy way to obtain the proper URI for an Android app is to **use a web browser** to visit the App's page in the Google Play store. The URI for the app will appear in the address bar as an `?id=` query parameter (e.g. `https://play.google.com/store/apps/details?id=com.twitter.android`).
{% endcallout %}