Getting Started
설치 단계와 이 플러그인의 전체 마크다운 가이드를 포함한 설정 명령어를 복사하세요.
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-autofill-save-password`
Run the required Capacitor sync/update step after installation.
Read this markdown guide for the full setup steps: https://raw.githubusercontent.com/Cap-go/website/refs/heads/main/apps/docs/src/content/docs/docs/plugins/autofill-save-password/getting-started.mdx
Use that guide for platform-specific steps, native file edits, permissions, config changes, imports, and usage setup.
If that guide references other docs pages, read them too.
설치
설치설치 단계를 사용하여 플러그인을 설치할 수 있습니다. AI 도구에 Capgo 스킬을 추가하려면 다음 명령어를 사용하세요:
npx skills add https://github.com/Cap-go/capgo-skills --skill capacitor-plugins그런 다음 다음 명령어를 사용하세요:
Use the `capacitor-plugins` skill from `Cap-go/capgo-skills` to install the `@capgo/capacitor-autofill-save-password` plugin in my project.만약 Manual Setup을 선호한다면, 플러그인을 설치하기 위해 다음 명령어를 실행하고 아래에 플랫폼에 따라 설명된 지침을 따르세요.
bun add @capgo/capacitor-autofill-save-passwordbunx cap syncImport
‘Import’라는 제목의 섹션import { SavePassword } from '@capgo/capacitor-autofill-save-password';API 개요
‘API 개요’라는 제목의 섹션promptDialog
__CAPGO_KEEP_0____CAPGO_KEEP_1__
import { SavePassword } from '@capgo/capacitor-autofill-save-password';
await SavePassword.promptDialog({ username: 'your-username', password: 'your-password'});readPassword
__CAPGO_KEEP_3____CAPGO_KEEP_4__
import { SavePassword } from '@capgo/capacitor-autofill-save-password';
await SavePassword.readPassword();__CAPGO_KEEP_6__
__CAPGO_KEEP_7__Options
__CAPGO_KEEP_8__export interface Options { /** * The username to save. */ username: string; /** * The password to save. */ password: string; /** * The url to save the password for. (For example: "console.capgo.app") * iOS only. */ url?: string;}ReadPasswordResult
__CAPGO_KEEP_10__export interface ReadPasswordResult { /** * The username of the password. */ username: string; /** * The password of the password. */ password: string;}원본
원본이 페이지는 플러그인의 src/definitions.ts업스트림에서 API이 변경되면 다시 싱크를 실행하세요.
시작하기
시작하기이러한 플러그인을 사용하고 계신가요? 시작하기 인증 및 계정 흐름을 계획하고 Using @capgo/capacitor-autofill-save-password Using @capgo/capacitor-autofill-save-password @capgo/capacitor-social-login @capgo/capacitor-social-login 구현 세부 사항에 대해 @capgo/capacitor-passkey @capgo/capacitor-passkey 구현 세부 사항에 대해 @capgo/capacitor-native-biometric @capgo/capacitor-native-biometric 구현 세부 사항에 대해, 그리고 2단계 인증 2단계 인증 구현 세부 사항에 대해.