RandomyzeEverything
RandomyzeEverything

Reputation: 784

Display only some parts of website in Chrome custom tabs

I want to know if I can block some elements of a website in custom tabs. I know you can do it in WebView by running javascript like:

@Override
public void onPageFinished(WebView view, String url) {
    view.loadUrl("javascript:my javascript");
}

What is the way to do this in Chrome custom tabs?

Upvotes: 1

Views: 157

Answers (1)

BlackDragon
BlackDragon

Reputation: 31

You can't inject javascript in Chrome custom tabs.

Upvotes: 2

Related Questions