Form Fill Utility

Fills the form automatically in the assisted-service.egov-nsdl.com and myutiitsl website based on the cookies created from a website

Form Fill Utility란 무엇입니까?

Form Fill Utility은(는) rskextention에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fills the form automatically in the assisted-service.egov-nsdl.com and myutiitsl website based on the cookies created from a website"입니다.

확장 프로그램 스크린샷

screenshot

Form Fill Utility 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        It fills the form based on the cookies that are created in the website. It reads the cookies from browser and fills the form                    

확장 프로그램 기본 정보

이름 Form Fill Utility Form Fill Utility
ID bekmfampknpcadmjekhhinmolcaidpaf
공식 URL https://chromewebstore.google.com/detail/form-fill-utility/bekmfampknpcadmjekhhinmolcaidpaf
설명 Fills the form automatically in the assisted-service.egov-nsdl.com and myutiitsl website based on the cookies created from a website
파일 크기 16.84 KB
설치 횟수 13,118
현재 버전 2.4
최근 업데이트 2024-01-27
출시 날짜 2022-10-20
평점 4.25/5 총 4 개의 평점
개발자 rskextention
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://ruraleservices.com/agent/privacypolicy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Form Fill Utility",
    "version": "2.4",
    "description": "Fills the form automatically in the assisted-service.egov-nsdl.com and myutiitsl website based on the cookies created from a website",
    "permissions": [
        "cookies",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/assisted-service.egov-nsdl.com\/*",
        "*:\/\/www.myutiitsl.com\/*",
        "*:\/\/ruraleservices.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "manifest_version": 3,
    "icons": {
        "16": "images\/get_started16.png",
        "32": "images\/get_started32.png",
        "48": "images\/get_started48.png",
        "128": "images\/get_started128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/assisted-service.egov-nsdl.com\/*",
                "*:\/\/www.myutiitsl.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "contentScript.js"
            ]
        }
    ]
}