Socket
Book a DemoInstallSign in
Socket

@nadlowebagentur/capacitor-in-app-browser

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nadlowebagentur/capacitor-in-app-browser

Open InApp webView based browser

latest
Source
npmnpm
Version
0.0.9
Version published
Maintainers
1
Created
Source

capacitor-in-app-browser

Open InApp webView based browser

Install

npm install capacitor-in-app-browser
npx cap sync

API

  • open(...)
  • navigate(...)
  • close()
  • back()
  • forward()
  • reload()
  • canGoForward()
  • canGoBack()
  • addListener('urlChanged', ...)
  • Interfaces

open(...)

open(options: { url: string; marginTop?: number; allowedOrigins?: string[]; blockedOrigins?: string[]; blockTitle?: string; blockMessage?: string; }) => Promise<void>
ParamType
options{ url: string; marginTop?: number; allowedOrigins?: string[]; blockedOrigins?: string[]; blockTitle?: string; blockMessage?: string; }

navigate(...)

navigate(options: { url: string; }) => Promise<void>
ParamType
options{ url: string; }

close()

close() => Promise<void>

back()

back() => Promise<void>

forward()

forward() => Promise<void>

reload()

reload() => Promise<void>

canGoForward()

canGoForward() => Promise<{ value: boolean; }>

Returns: Promise<{ value: boolean; }>

canGoBack()

canGoBack() => Promise<{ value: boolean; }>

Returns: Promise<{ value: boolean; }>

addListener('urlChanged', ...)

addListener(eventName: 'urlChanged', listenerFunc: (data: { url: string; }) => void) => Promise<PluginListenerHandle> & PluginListenerHandle

iOS only: Listen for the browser url changed event. It fires when the Browser navigate to other URL.

ParamType
eventName'urlChanged'
listenerFunc(data: { url: string; }) => void

Returns: Promise<PluginListenerHandle> & PluginListenerHandle

Since: 0.0.1

Interfaces

PluginListenerHandle

PropType
remove() => Promise<void>

Keywords

capacitor

FAQs

Package last updated on 22 Sep 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts