Autofill

The Chrome extension you are describing is an Autofill extension that simplifies the process of filling out sign-up forms. With……

Autofill란 무엇입니까?

Autofill은(는) muhammadfaizan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The Chrome extension you are describing is an Autofill extension that simplifies the process of filling out sign-up forms. With……"입니다.

확장 프로그램 스크린샷

screenshot

Autofill 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        The Chrome extension you are describing is an Autofill extension that simplifies the process of filling out sign-up forms. With…
The Chrome extension you are describing is an Autofill extension that simplifies the process of filling out sign-up forms. With this extension, you can quickly and easily fill in your Full Name, Email, and Password fields with just one keyboard shortcut - Ctrl+y.

When you navigate to a sign-up page, you can activate the Autofill extension by pressing the Ctrl+y key combination. The extension will then automatically fill in the Full Name, Email, and Password fields with the information you have previously saved.

If you have not saved this information before, the extension will prompt you to do so. Once you have saved the information, the extension will be able to autofill the fields whenever you need it. This saves you time and effort when filling out sign-up forms, especially if you are signing up for multiple websites.

The Autofill extension is designed to be user-friendly and easy to use. It integrates seamlessly with your browser and can be customized to your preferences. You can choose which fields you want the extension to autofill and which fields you want to fill manually.

Overall, this Chrome extension is a handy tool that simplifies the sign-up process by automating the filling of Full Name, Email, and Password fields. With just a few clicks, you can fill in these fields and move on to using the website without wasting time or effort.                    

확장 프로그램 기본 정보

이름 Autofill Autofill
ID hdgiiplkgepikjeikldodaokigebbblk
공식 URL https://chromewebstore.google.com/detail/autofill/hdgiiplkgepikjeikldodaokigebbblk
설명 The Chrome extension you are describing is an Autofill extension that simplifies the process of filling out sign-up forms. With……
파일 크기 4.74 KB
설치 횟수 126
현재 버전 1.0.1
최근 업데이트 2023-08-22
출시 날짜 2023-03-06
개발자 muhammadfaizan
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Autofill",
    "manifest_version": 3,
    "version": "1.0.1",
    "permissions": [
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "commands": {
        "inject-script": {
            "suggested_key": "Ctrl+Shift+Y",
            "description": "Inject a script on the page"
        }
    }
}