Defining Your App's Icon

When your site makes a login request to a OneKey Browser Extension user, OneKey Browser Extension may render a modal that display's your site icon.

We retrieve this icon using the HTML selector <head> link[rel="shortcut icon"], so to customize this icon for your site, just make sure to follow the favicon standard, and make sure to have a link tag within your site's head with rel = "shortcut icon", like this.

<head>  <link rel="shortcut icon" href="https://your-site.com/your-icon.png" /></head>

The tag's href attribute will be used for assigning the site icon.

Last updated