问题 Earlier the EXTRA_HEADERS passed to the customTabsIntent.intent.putExtra(Browser.EXTRA_HEADERS, headers), was working fine. After Chrome updated to 83, it stopped passing the header data. public static void startCustomTab(String url, Context context) { CustomTabsIntent.Builder builder = new CustomTabsIntent.Builder(); CustomTabsIntent customTabsIntent = builder.build(); builder.setShowTitle(true); Bundle headers = new Bundle(); headers.putString(context.getString(R.string.type), "android");